summaryrefslogtreecommitdiff
path: root/gallery/js/querystring.js
diff options
context:
space:
mode:
authorpepperpepperpepper <pepper@scannerjammer.com>2015-11-17 22:49:00 -0800
committerpepperpepperpepper <pepper@scannerjammer.com>2015-11-17 22:49:00 -0800
commit2f550032693af38a7a5b528336112c904d6b0792 (patch)
treeaa626786e6de09bce0008522638215d7bd3cda4d /gallery/js/querystring.js
parentdfda5d7399da4b4d19f13abd6dc390e23ff294c4 (diff)
ok
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);