[multiscaling] locked 150% scaling for IE

This commit is contained in:
Maxim Kadushkin 2021-02-18 00:27:20 +03:00
parent d7e889332c
commit 86a441c3a3

View file

@ -154,9 +154,12 @@ Common.Utils = _.extend(new(function() {
me.zoom = 1;
me.innerWidth = window.innerWidth;
me.innerHeight = window.innerHeight;
if ( isIE ) $(document.body).addClass('ie');
checkSize();
$(window).on('resize', checkSize);
if ( isIE )
$(document.body).addClass('ie');
else {
checkSize();
$(window).on('resize', checkSize);
}
return {
checkSize: checkSize,