update
All checks were successful
Deploy Static Site / deploy (push) Successful in 6m5s

This commit is contained in:
2025-07-14 23:28:04 +04:00
parent df67a18d30
commit 85518b8c86
152 changed files with 23080 additions and 0 deletions

14
kedo/hmcontextids.js Normal file
View 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 "";
}