Rearrange source to src dir.
[redakcja.git] / redakcja / static / js / catalogue / catalogue.js
diff --git a/redakcja/static/js/catalogue/catalogue.js b/redakcja/static/js/catalogue/catalogue.js
deleted file mode 100755 (executable)
index e8ef5e9..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-(function($) {
-    $(function() {
-
-
-        $(function() {
-            $('.filter').change(function() {
-                document.filter[this.name].value = this.value;
-                document.filter.submit();
-            });
-
-            $('.check-filter').change(function() {
-                document.filter[this.name].value = this.checked ? '1' : '';
-                document.filter.submit();
-            });
-
-            $('.text-filter').each(function() {
-                var inp = this;
-                $(inp).parent().submit(function() {
-                    document.filter[inp.name].value = inp.value;
-                    document.filter.submit();
-                    return false;
-                });
-            });
-        });
-
-
-    });
-})(jQuery)
-