[win] for bug 64942

This commit is contained in:
maxkadushkin
2023-11-01 22:36:16 +03:00
parent cdcf5cd5fa
commit edabaa21a2

View File

@ -615,6 +615,9 @@ define([
isFeatureAvailable: function (feature) {
return !!native && !!native[feature];
},
isWinXp: function () {
return nativevars && nativevars.os === 'winxp';
},
call: function (name) {
if ( native[name] ) {
let args = [].slice.call(arguments, 1);
@ -674,7 +677,7 @@ define([
return false;
},
};
};
};
!Common.Controllers && (Common.Controllers = {});