2021-02-10 20:42:55 +00:00
|
|
|
|
|
|
|
function checkScaling() {
|
2021-06-28 18:01:08 +00:00
|
|
|
var matches = {
|
|
|
|
'pixel-ratio__1_25': "screen and (-webkit-min-device-pixel-ratio: 1.25) and (-webkit-max-device-pixel-ratio: 1.49), " +
|
|
|
|
"screen and (min-resolution: 1.25dppx) and (max-resolution: 1.49dppx)",
|
|
|
|
'pixel-ratio__1_5': "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.74), " +
|
|
|
|
"screen and (min-resolution: 1.5dppx) and (max-resolution: 1.74dppx)",
|
|
|
|
'pixel-ratio__1_75': "screen and (-webkit-min-device-pixel-ratio: 1.75) and (-webkit-max-device-pixel-ratio: 1.99), " +
|
|
|
|
"screen and (min-resolution: 1.75dppx) and (max-resolution: 1.99dppx)",
|
|
|
|
};
|
|
|
|
|
|
|
|
for (var c in matches) {
|
|
|
|
if ( window.matchMedia(matches[c]).matches ) {
|
|
|
|
document.body.classList.add(c);
|
|
|
|
break;
|
|
|
|
}
|
2021-02-10 20:42:55 +00:00
|
|
|
}
|
2021-02-19 10:26:55 +00:00
|
|
|
|
|
|
|
if ( !window.matchMedia("screen and (-webkit-device-pixel-ratio: 1.5)," +
|
|
|
|
"screen and (-webkit-device-pixel-ratio: 1)," +
|
|
|
|
"screen and (-webkit-device-pixel-ratio: 2)").matches )
|
|
|
|
{
|
|
|
|
// don't add zoom for mobile devices
|
2021-06-28 14:43:46 +00:00
|
|
|
// if (!(/android|avantgo|playbook|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od|ad)|iris|kindle|lge |maemo|midp|mmp|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent || navigator.vendor || window.opera)))
|
|
|
|
// document.getElementsByTagName('html')[0].setAttribute('style', 'zoom: ' + (1 / window.devicePixelRatio) + ';');
|
2021-02-19 10:26:55 +00:00
|
|
|
}
|
2021-02-10 20:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
checkScaling();
|
|
|
|
|
|
|
|
var params = (function() {
|
|
|
|
var e,
|
|
|
|
a = /\+/g, // Regex for replacing addition symbol with a space
|
|
|
|
r = /([^&=]+)=?([^&]*)/g,
|
|
|
|
d = function (s) { return decodeURIComponent(s.replace(a, " ")); },
|
|
|
|
q = window.location.search.substring(1),
|
|
|
|
urlParams = {};
|
|
|
|
|
|
|
|
while (e = r.exec(q))
|
|
|
|
urlParams[d(e[1])] = d(e[2]);
|
|
|
|
|
|
|
|
return urlParams;
|
|
|
|
})();
|
|
|
|
|
2021-06-25 08:03:05 +00:00
|
|
|
if ( !!params.uitheme && !localStorage.getItem("ui-theme-id") ) {
|
2021-05-21 12:17:04 +00:00
|
|
|
// const _t = params.uitheme.match(/([\w-]+)/g);
|
|
|
|
|
|
|
|
if ( params.uitheme == 'default-dark' )
|
|
|
|
params.uitheme = 'theme-dark';
|
|
|
|
else
|
|
|
|
if ( params.uitheme == 'default-light' )
|
|
|
|
params.uitheme = 'theme-classic-light';
|
|
|
|
|
2021-06-25 08:03:05 +00:00
|
|
|
localStorage.setItem("ui-theme-id", params.uitheme);
|
2021-05-21 12:17:04 +00:00
|
|
|
}
|
2021-02-24 20:34:05 +00:00
|
|
|
|
2021-06-25 08:03:05 +00:00
|
|
|
var ui_theme_name = localStorage.getItem("ui-theme-id");
|
2021-05-21 12:48:50 +00:00
|
|
|
if ( !ui_theme_name ) {
|
|
|
|
if ( window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches ) {
|
|
|
|
ui_theme_name = 'theme-dark';
|
2021-06-25 08:03:05 +00:00
|
|
|
localStorage.setItem("ui-theme-id", ui_theme_name);
|
2021-05-21 12:48:50 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-10 20:42:55 +00:00
|
|
|
if ( !!ui_theme_name ) {
|
|
|
|
document.body.classList.add(ui_theme_name);
|
|
|
|
}
|