summaryrefslogtreecommitdiff
path: root/gallery/js/querystring.js
diff options
context:
space:
mode:
Diffstat (limited to 'gallery/js/querystring.js')
-rw-r--r--gallery/js/querystring.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/gallery/js/querystring.js b/gallery/js/querystring.js
deleted file mode 100644
index 79c2a4d..0000000
--- a/gallery/js/querystring.js
+++ /dev/null
@@ -1,13 +0,0 @@
-(function($) {
- $.QueryString = (function(a) {
- if (a == "") return {};
- var b = {};
- for (var i = 0; i < a.length; ++i)
- {
- var p=a[i].split('=');
- if (p.length != 2) continue;
- b[p[0]] = decodeURIComponent(p[1].replace(/\+/g, " "));
- }
- return b;
- })(window.location.search.substr(1).split('&'))
-})(jQuery);