summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--modules/tag/js/tag.js14
1 files changed, 7 insertions, 7 deletions
diff --git a/modules/tag/js/tag.js b/modules/tag/js/tag.js
index 7b2d32c4..30e9ca50 100644
--- a/modules/tag/js/tag.js
+++ b/modules/tag/js/tag.js
@@ -9,11 +9,11 @@ $("document").ready(function() {
});
function get_tag_block(url) {
- $.post(url, function(data) {
- $('#gTagFormContainer').html(data);
- $("#gAddTag").submit(function(event){
- get_tag_block($("#gAddTag").attr("action"));
- return false;
- });
- });
+ $.post(url, function(data) {
+ $('#gTagFormContainer').html(data);
+ $("#gAddTag").submit(function(event){
+ get_tag_block($("#gAddTag").attr("action"));
+ return false;
+ });
+ });
}