diff --git a/apps/documenteditor/main/app/view/FileMenuPanels.js b/apps/documenteditor/main/app/view/FileMenuPanels.js index 9b3ef94f30..2f412b1f81 100644 --- a/apps/documenteditor/main/app/view/FileMenuPanels.js +++ b/apps/documenteditor/main/app/view/FileMenuPanels.js @@ -1079,6 +1079,8 @@ define([], function () { value = Common.Utils.InternalSettings.get("de-settings-numeral"); item = this.cmbNumeral.store.findWhere({value: value}); this.cmbNumeral.setValue(item ? item.get('value') : Asc.c_oNumeralType.arabic); + + Common.localStorage.getItem('help-tip-customize-shortcuts') && $('.new-hint', this.el).addClass('hidden'); }, applySettings: function() { @@ -1198,6 +1200,7 @@ define([], function () { api: this.api }); win.show(); + Common.localStorage.setItem('help-tip-customize-shortcuts', 1); // don't show new feature label }, customizeQuickAccess: function () { diff --git a/apps/pdfeditor/main/app/view/FileMenuPanels.js b/apps/pdfeditor/main/app/view/FileMenuPanels.js index f3c50aa878..4211be2f77 100644 --- a/apps/pdfeditor/main/app/view/FileMenuPanels.js +++ b/apps/pdfeditor/main/app/view/FileMenuPanels.js @@ -854,6 +854,8 @@ define([], function () { value = Common.Utils.InternalSettings.get("settings-tab-style"); item = this.cmbTabStyle.store.findWhere({value: value}); this.cmbTabStyle.setValue(item ? item.get('value') : 'fill'); + + Common.localStorage.getItem('help-tip-customize-shortcuts') && $('.new-hint', this.el).addClass('hidden'); }, applySettings: function() { @@ -937,6 +939,7 @@ define([], function () { api: this.api }); win.show(); + Common.localStorage.setItem('help-tip-customize-shortcuts', 1); // don't show new feature label }, customizeQuickAccess: function () { diff --git a/apps/presentationeditor/main/app/view/FileMenuPanels.js b/apps/presentationeditor/main/app/view/FileMenuPanels.js index 1a9bb5a8b9..5be1195e95 100644 --- a/apps/presentationeditor/main/app/view/FileMenuPanels.js +++ b/apps/presentationeditor/main/app/view/FileMenuPanels.js @@ -826,6 +826,8 @@ define([], function () { value = Common.Utils.InternalSettings.get("settings-tab-style"); item = this.cmbTabStyle.store.findWhere({value: value}); this.cmbTabStyle.setValue(item ? item.get('value') : 'fill'); + + Common.localStorage.getItem('help-tip-customize-shortcuts') && $('.new-hint', this.el).addClass('hidden'); }, applySettings: function() { @@ -905,6 +907,7 @@ define([], function () { api: this.api }); win.show(); + Common.localStorage.setItem('help-tip-customize-shortcuts', 1); // don't show new feature label }, customizeQuickAccess: function () { diff --git a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js index bf27a89723..e5ab529987 100644 --- a/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js +++ b/apps/spreadsheeteditor/main/app/view/FileMenuPanels.js @@ -1243,6 +1243,8 @@ define([], function () { this.chHScroll.setValue(this.api.asc_GetShowHorizontalScroll()); this.chVScroll.setValue(this.api.asc_GetShowVerticalScroll()); } + + Common.localStorage.getItem('help-tip-customize-shortcuts') && $('.new-hint', this.el).addClass('hidden'); }, isValid: function() { @@ -1413,6 +1415,7 @@ define([], function () { api: this.api }); win.show(); + Common.localStorage.setItem('help-tip-customize-shortcuts', 1); // don't show new feature label }, SetDisabled: function(disabled) { diff --git a/apps/visioeditor/main/app/view/FileMenuPanels.js b/apps/visioeditor/main/app/view/FileMenuPanels.js index 6ffb25aa02..ca9f0acff0 100644 --- a/apps/visioeditor/main/app/view/FileMenuPanels.js +++ b/apps/visioeditor/main/app/view/FileMenuPanels.js @@ -582,6 +582,8 @@ define([], function () { value = Common.Utils.InternalSettings.get("settings-tab-style"); item = this.cmbTabStyle.store.findWhere({value: value}); this.cmbTabStyle.setValue(item ? item.get('value') : 'fill'); + + // Common.localStorage.getItem('help-tip-customize-shortcuts') && $('.new-hint', this.el).addClass('hidden'); }, applySettings: function() { @@ -626,6 +628,7 @@ define([], function () { // api: this.api // }); // win.show(); + // Common.localStorage.setItem('help-tip-customize-shortcuts', 1); // don't show new feature label // }, customizeQuickAccess: function () {