summaryrefslogtreecommitdiff
path: root/modules/tag/js
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tag/js')
-rw-r--r--modules/tag/js/tag.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/tag/js/tag.js b/modules/tag/js/tag.js
deleted file mode 100644
index 6157b81b..00000000
--- a/modules/tag/js/tag.js
+++ /dev/null
@@ -1,24 +0,0 @@
-$("document").ready(function() {
- $("#gTagLess").click(function(event){
- event.preventDefault();
- get_tag_block($("#gTagLess").attr("href"));
- });
- $("#gTagMore").click(function(event){
- event.preventDefault();
- get_tag_block($("#gTagMore").attr("href"));
- });
-});
-
-function get_tag_block(url) {
- $.get(url, function(data) {
- $('#gTag').html(data);
- $("#gTagLess").click(function(event){
- event.preventDefault();
- get_tag_block($("#gTagLess").attr("href"));
- });
- $("#gTagMore").click(function(event){
- event.preventDefault();
- get_tag_block($("#gTagMore").attr("href"));
- });
- });
-}