summaryrefslogtreecommitdiff
path: root/modules/tag/js
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tag/js')
-rw-r--r--modules/tag/js/tag.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/tag/js/tag.js b/modules/tag/js/tag.js
deleted file mode 100644
index 4760084d..00000000
--- a/modules/tag/js/tag.js
+++ /dev/null
@@ -1,13 +0,0 @@
-function ajaxify_tag_form() {
- $("#g-tag form").ajaxForm({
- dataType: "json",
- success: function(data) {
- if (data.result == "success") {
- $.get($("#g-tag-cloud").attr("title"), function(data, textStatus) {
- $("#g-tag-cloud").html(data);
- });
- }
- $("#g-tag form").resetForm();
- }
- });
-}