first commit
This commit is contained in:
14
service/hmcontextids.js
Normal file
14
service/hmcontextids.js
Normal file
@ -0,0 +1,14 @@
|
||||
var hmContextIds = new Array();
|
||||
function hmGetContextId(query) {
|
||||
var urlParams;
|
||||
var match,
|
||||
pl = /\+/g,
|
||||
search = /([^&=]+)=?([^&]*)/g,
|
||||
decode = function (s) { return decodeURIComponent(s.replace(pl, " ")); },
|
||||
params = {};
|
||||
while (match = search.exec(query))
|
||||
params[decode(match[1])] = decode(match[2]);
|
||||
if (params["contextid"]) return decodeURIComponent(hmContextIds[params["contextid"]]);
|
||||
else return "";
|
||||
}
|
||||
|
Reference in New Issue
Block a user