summaryrefslogtreecommitdiff
path: root/modules/tag/js
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-07-23 10:23:00 -0700
committerTim Almdal <tnalmdal@shaw.ca>2009-07-23 10:23:00 -0700
commit070884d9e248ba692e49949851099e4d79285ef2 (patch)
tree566d9d63b6471e6d80c10565b3008dc94b1a6c3b /modules/tag/js
parentac23b9be185d98e3b672dc4c9051dba1ec9d10fc (diff)
Fix for ticket #496. replace the src attribute (non standard) with the title attribute to contain the url of the tag cloud controller.
Diffstat (limited to 'modules/tag/js')
-rw-r--r--modules/tag/js/tag.js2
1 files changed, 1 insertions, 1 deletions
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);
});
}