]> _ Git - cubedesigners-v7.git/commitdiff
(no commit message)
authorvincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Thu, 20 Nov 2014 17:44:01 +0000 (17:44 +0000)
committervincent@cubedesigners.com <vincent@cubedesigners.com@f5622870-0f3c-0410-866d-9cb505b7a8ef>
Thu, 20 Nov 2014 17:44:01 +0000 (17:44 +0000)
js/taglist_.js [deleted file]

diff --git a/js/taglist_.js b/js/taglist_.js
deleted file mode 100644 (file)
index f406ac1..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-registerLoader(load_taglist, true);
-
-function load_taglist() {
-       var t = $('ul.tags');
-       var perline = $(t).data('perline');
-       $(document).on('click', "ul.tags li[data-id]", function () {
-               if ($(this).hasClass('active')) {
-                       return false;
-               }
-
-               var id = $(this).data('id');
-
-               $('[data-cat]:hidden').show().removeClass('last');
-               if (id != 0) {
-                       $('[data-cat][data-cat!="' + id + '"]').hide();
-               }
-               $('[data-cat]:visible:nth-child(3n)').addClass('last');
-
-               $(this).siblings().removeClass('active');
-               $(this).addClass('active');
-       });
-}
\ No newline at end of file