mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-02-10 18:05:32 +08:00
Fix Bug 77912
This commit is contained in:
@ -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 () {
|
||||
|
||||
@ -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 () {
|
||||
|
||||
@ -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 () {
|
||||
|
||||
@ -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) {
|
||||
|
||||
@ -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 () {
|
||||
|
||||
Reference in New Issue
Block a user