Sha256: 0d64db3cef9003a2f39ed0e7281e623dc451414198cb3821465667fbe6032854

Contents?: true

Size: 825 Bytes

Versions: 25

Compression:

Stored size: 825 Bytes

Contents

/* https://github.com/rapportive-oss/jquery-parsequery */
(function($){$.parseQuery=function(options){var config={query:window.location.search||""},params={};if(typeof options==='string'){options={query:options};}
$.extend(config,$.parseQuery,options);config.query=config.query.replace(/^\?/,'');$.each(config.query.split(config.separator),function(i,param){var pair=param.split('='),key=config.decode(pair.shift(),null).toString(),value=config.decode(pair.length?pair.join('='):null,key);if(config.array_keys(key)){params[key]=params[key]||[];params[key].push(value);}else{params[key]=value;}});return params;};$.parseQuery.decode=$.parseQuery.default_decode=function(string){return decodeURIComponent((string||"").replace('+',' '));};$.parseQuery.array_keys=function(){return false;};$.parseQuery.separator="&";}(jQuery));

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
showoff-0.20.4 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.20.3 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.20.2 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.20.1 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.20.0 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.19.6 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.19.4 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.19.3 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.19.2 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.19.1 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.19.0 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.18.2 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.18.1 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.18.0 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.17.2 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.17.1 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.17.0 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.16.2 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.16.1 public/js/jquery.parsequery.min-6a20f83.js
showoff-0.16.0 public/js/jquery.parsequery.min-6a20f83.js