Merge pull request #739 from ONLYOFFICE/maxkadushkin-patch-1
fix bug 48995, 48992
This commit is contained in:
commit
a214a9d75b
|
@ -120,8 +120,8 @@ Common.Utils = _.extend(new(function() {
|
|||
me = this,
|
||||
checkSize = function() {
|
||||
var scale = {};
|
||||
if ( !!window.AscCommon /*&& !!window.AscCommon.checkDeviceScale*/ )
|
||||
scale = window.AscCommon.checkDeviceScale1();
|
||||
if ( !!window.AscCommon && !!window.AscCommon.checkDeviceScale )
|
||||
scale = window.AscCommon.checkDeviceScale();
|
||||
else {
|
||||
var str_mq_150 = "screen and (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 1.9), " +
|
||||
"screen and (min-resolution: 1.5dppx) and (max-resolution: 1.9dppx)";
|
||||
|
@ -1042,4 +1042,4 @@ Common.Utils.UserInfoParser = new(function() {
|
|||
return usergroups;
|
||||
}
|
||||
}
|
||||
})();
|
||||
})();
|
||||
|
|
Loading…
Reference in a new issue