1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-24 09:57:09 +00:00

Generated minified JS and some formatting

This commit is contained in:
Cristian Deluxe 2016-12-07 06:23:25 +01:00
parent 3533615be4
commit 23f940fede
6 changed files with 217 additions and 191 deletions

View file

@ -0,0 +1 @@
function Querystring(a){this.params={};var b=window.location.search;null==a&&(a=b.substring(1,b.length));if(0!=a.length)for(a=a.replace(/\+/g," "),a=a.split("&"),b=0;b<a.length;b++){var c=a[b].split("="),d=decodeURIComponent(c[0]),c=2==c.length?decodeURIComponent(c[1]):d;this.params[d]=c}}Querystring.prototype.get=function(a,b){var c=this.params[a];return null!=c?c:b};Querystring.prototype.contains=function(a){return null!=this.params[a]};