diff --git a/apps/common/main/lib/controller/HintManager.js b/apps/common/main/lib/controller/HintManager.js index 5d8dbfd9f..ecb631631 100644 --- a/apps/common/main/lib/controller/HintManager.js +++ b/apps/common/main/lib/controller/HintManager.js @@ -457,6 +457,8 @@ Common.UI.HintManager = new(function() { }; var _init = function(api) { + if (Common.Utils.isIE) + return; _api = api; var filter = Common.localStorage.getKeysFilter(); @@ -661,6 +663,8 @@ Common.UI.HintManager = new(function() { }; var _clearHints = function (isComplete) { + if (Common.Utils.isIE) + return; _hintVisible && _hideHints(); if (_currentHints.length > 0) { _resetToDefault(); diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 46f03cfca..d2e258a5a 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -410,6 +410,7 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }); + Common.Utils.isIE && this.chUseAltKey.$el.parent().parent().hide(); /** coauthoring begin **/ this.chLiveComment = new Common.UI.CheckBox({ diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index dcf044ba1..227cdb77d 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -359,6 +359,7 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }); + Common.Utils.isIE && this.chUseAltKey.$el.parent().parent().hide(); this.cmbZoom = new Common.UI.ComboBox({ el : $markup.findById('#fms-cmb-zoom'), diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index 471066cd4..a0bb46bcc 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -378,6 +378,7 @@ define([ dataHintDirection: 'left', dataHintOffset: 'small' }); + Common.Utils.isIE && this.chUseAltKey.$el.parent().parent().hide(); this.rbCoAuthModeFast = new Common.UI.RadioBox({ el : $markup.findById('#fms-rb-coauth-mode-fast'),