diff --git a/apps/presentationeditor/main/app/controller/Statusbar.js b/apps/presentationeditor/main/app/controller/Statusbar.js index b409cf6f4..197be4478 100644 --- a/apps/presentationeditor/main/app/controller/Statusbar.js +++ b/apps/presentationeditor/main/app/controller/Statusbar.js @@ -133,7 +133,7 @@ define([ Common.component.Analytics.trackEvent('Status Bar', 'Preview'); }; - if (!me.statusbar.mode.isDesktopApp) { + if (!me.statusbar.mode.isDesktopApp && !Common.Utils.isIE11) { Common.NotificationCenter.on('window:resize', onWindowResize); me.fullScreen(document.documentElement); } else diff --git a/apps/presentationeditor/main/app/controller/Toolbar.js b/apps/presentationeditor/main/app/controller/Toolbar.js index e158fec23..1f8be2c25 100644 --- a/apps/presentationeditor/main/app/controller/Toolbar.js +++ b/apps/presentationeditor/main/app/controller/Toolbar.js @@ -771,7 +771,7 @@ define([ me.api.StartDemonstration('presentation-preview', _.isNumber(slidenum) ? slidenum : 0); Common.component.Analytics.trackEvent('ToolBar', 'Preview'); }; - if (!me.toolbar.mode.isDesktopApp) { + if (!me.toolbar.mode.isDesktopApp && !Common.Utils.isIE11) { Common.NotificationCenter.on('window:resize', onWindowResize); me.fullScreen(document.documentElement); } else diff --git a/apps/presentationeditor/main/app/view/DocumentHolder.js b/apps/presentationeditor/main/app/view/DocumentHolder.js index e2e712b8b..fbcdb1157 100644 --- a/apps/presentationeditor/main/app/view/DocumentHolder.js +++ b/apps/presentationeditor/main/app/view/DocumentHolder.js @@ -1301,7 +1301,7 @@ define([ Common.NotificationCenter.off('window:resize', onWindowResize); me.api.StartDemonstration('presentation-preview', 0); }; - if (!me.mode.isDesktopApp) { + if (!me.mode.isDesktopApp && !Common.Utils.isIE11) { Common.NotificationCenter.on('window:resize', onWindowResize); me.fullScreen(document.documentElement); } else @@ -1569,7 +1569,7 @@ define([ Common.component.Analytics.trackEvent('DocumentHolder', 'Preview'); }; - if (!me.mode.isDesktopApp) { + if (!me.mode.isDesktopApp && !Common.Utils.isIE11) { Common.NotificationCenter.on('window:resize', onWindowResize); me.fullScreen(document.documentElement); } else diff --git a/apps/presentationeditor/main/app/view/DocumentPreview.js b/apps/presentationeditor/main/app/view/DocumentPreview.js index 711d41367..2176f5d43 100644 --- a/apps/presentationeditor/main/app/view/DocumentPreview.js +++ b/apps/presentationeditor/main/app/view/DocumentPreview.js @@ -296,7 +296,7 @@ define([ setMode: function(mode) { this.mode = mode; - if (this.mode.isDesktopApp) { + if (this.mode.isDesktopApp || Common.Utils.isIE11) { this.btnFullScreen.setVisible(false); this.separatorFullScreen.hide(); $(document).off("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange"); @@ -336,7 +336,7 @@ define([ }, fullScreen: function(element) { - if (this.mode.isDesktopApp) return; + if (this.mode.isDesktopApp || Common.Utils.isIE11) return; if (element) { if(element.requestFullscreen) { element.requestFullscreen(); @@ -351,7 +351,7 @@ define([ }, fullScreenCancel: function () { - if (this.mode.isDesktopApp) return; + if (this.mode.isDesktopApp || Common.Utils.isIE11) return; if(document.cancelFullScreen) { document.cancelFullScreen(); } else if(document.webkitCancelFullScreen ) {