update
All checks were successful
Deploy Static Site / deploy (push) Successful in 3m24s

This commit is contained in:
2025-05-29 16:37:23 +04:00
parent 7365966470
commit e217f89702
2727 changed files with 0 additions and 206405 deletions

View File

@ -1,41 +0,0 @@
/* Project settings */
var hmAnimate = true;
var hmPopupSticky = true;
var hmImageLightbox = true;
var hmVideoLightbox = true;
var hmLightboxConstrained = true;
var hmForceRedirect = false;
var hmTocSingleClick = true;
var autocollapse = false;
var gaaccount = "",
gatrackername = "",
gatracklevels = 0;
var initialtocstate = "collapsed";
var agent = "",
platform = "",
hmBrowser = {};
try {
agent = navigator.userAgent; platform = navigator.platform;
hmBrowser.touch = !!(('ontouchstart' in window && !window.opera) || ('msmaxtouchpoints' in window.navigator) || ('maxtouchpoints' in window.navigator) || (navigator.maxTouchPoints > 0) || (navigator.msMaxTouchPoints > 0));
hmBrowser.nonDeskTouch = ((hmBrowser.touch && !/win32|win64/i.test(platform)) || (hmBrowser.touch && /win32|win64/i.test(platform) && /mobile/i.test(agent)));
hmBrowser.eventType = (('onmousedown' in window && !hmBrowser.nonDeskTouch) ? "mouse" : ('ontouchstart' in window) ? "touch" : ('msmaxtouchpoints' in window.navigator || navigator.msMaxTouchPoints > 0) ? "mstouchpoints" : ('maxtouchpoints' in window.navigator || navigator.maxTouchPoints > 0) ? "touchpoints" : "mouse");
switch(hmBrowser.eventType) {
case "mouse":
hmBrowser.touchstart = "mousedown";
hmBrowser.touchend = "mouseup";
break;
case "touch":
hmBrowser.touchstart = "touchstart";
hmBrowser.touchend = "touchend";
break;
case "mstouchpoints":
hmBrowser.touchstart = "MSPointerDown";
hmBrowser.touchend = "MSPointerUp";
break;
case "touchpoints":
hmBrowser.touchstart = "pointerdown";
hmBrowser.touchend = "pointerup";
break;
}
} catch(e) {}