From 070884d9e248ba692e49949851099e4d79285ef2 Mon Sep 17 00:00:00 2001 From: Tim Almdal Date: Thu, 23 Jul 2009 10:23:00 -0700 Subject: Fix for ticket #496. replace the src attribute (non standard) with the title attribute to contain the url of the tag cloud controller. --- modules/tag/js/tag.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/tag/js') diff --git a/modules/tag/js/tag.js b/modules/tag/js/tag.js index a1eaeecd..a5aaa3f8 100644 --- a/modules/tag/js/tag.js +++ b/modules/tag/js/tag.js @@ -7,7 +7,7 @@ function ajaxify_tag_form() { dataType: "json", success: function(data) { if (data.result == "success") { - $.get($("#gTagCloud").attr("src"), function(data, textStatus) { + $.get($("#gTagCloud").attr("title"), function(data, textStatus) { $("#gTagCloud").html(data); }); } -- cgit v1.2.3