mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-04-07 14:06:16 +08:00
[all] set 'show alt hints' option to true by default
This commit is contained in:
@ -1278,7 +1278,7 @@ define([
|
||||
appHeader.setDocumentCaption(me.api.asc_getDocumentName());
|
||||
me.updateWindowTitle(true);
|
||||
|
||||
value = Common.localStorage.getBool("de-settings-show-alt-hints", Common.Utils.isMac ? false : true);
|
||||
value = Common.localStorage.getBool("de-settings-show-alt-hints", true);
|
||||
Common.Utils.InternalSettings.set("de-settings-show-alt-hints", value);
|
||||
|
||||
/** coauthoring begin **/
|
||||
|
||||
@ -896,7 +896,7 @@ define([
|
||||
appHeader.setDocumentCaption( me.api.asc_getDocumentName() );
|
||||
me.updateWindowTitle(true);
|
||||
|
||||
value = Common.localStorage.getBool("pe-settings-show-alt-hints", Common.Utils.isMac ? false : true);
|
||||
value = Common.localStorage.getBool("pe-settings-show-alt-hints", true);
|
||||
Common.Utils.InternalSettings.set("pe-settings-show-alt-hints", value);
|
||||
|
||||
/** coauthoring begin **/
|
||||
|
||||
@ -202,7 +202,7 @@ define([
|
||||
Common.Utils.InternalSettings.set("sse-settings-fontrender", value);
|
||||
this.api.asc_setFontRenderingMode(parseInt(value));
|
||||
|
||||
value = Common.localStorage.getBool("sse-settings-show-alt-hints", Common.Utils.isMac ? false : true);
|
||||
value = Common.localStorage.getBool("sse-settings-show-alt-hints", true);
|
||||
Common.Utils.InternalSettings.set("sse-settings-show-alt-hints", value);
|
||||
|
||||
if ( !Common.Utils.isIE ) {
|
||||
|
||||
Reference in New Issue
Block a user