expose IE11 flag in JS as well

This commit is contained in:
Bruno Windels 2020-11-02 11:16:19 +01:00
parent 57da68fb1e
commit fbbdaf7dfa

View file

@ -99,6 +99,8 @@ export class Platform {
} else { } else {
this.request = xhrRequest; this.request = xhrRequest;
} }
const isIE11 = !!window.MSInputMethodContext && !!document.documentMode;
this.isIE11 = isIE11;
} }
get updateService() { get updateService() {
@ -116,8 +118,7 @@ export class Platform {
} }
createAndMountRootView(vm) { createAndMountRootView(vm) {
const isIE11 = !!window.MSInputMethodContext && !!document.documentMode; if (this.isIE11) {
if (isIE11) {
this._container.className += " legacy"; this._container.className += " legacy";
} }
window.__hydrogenViewModel = vm; window.__hydrogenViewModel = vm;