commit
1e57135e18
|
@ -631,15 +631,18 @@ define([
|
|||
},
|
||||
|
||||
autoCorrect: function() {
|
||||
if (this.dlgAutoCorrect && this.dlgAutoCorrect.isVisible()) return;
|
||||
|
||||
if (!this._mathCorrect)
|
||||
this._mathCorrect = new Common.UI.DataViewStore();
|
||||
if (!this._funcCorrect)
|
||||
this._funcCorrect = new Common.UI.DataViewStore();
|
||||
(new Common.Views.AutoCorrectDialog({
|
||||
this.dlgAutoCorrect = new Common.Views.AutoCorrectDialog({
|
||||
mathStore: this._mathCorrect,
|
||||
functionsStore: this._funcCorrect,
|
||||
api: this.api
|
||||
})).show();
|
||||
});
|
||||
this.dlgAutoCorrect.show();
|
||||
},
|
||||
|
||||
strLiveComment: 'Turn on option',
|
||||
|
|
|
@ -543,15 +543,18 @@ define([
|
|||
},
|
||||
|
||||
autoCorrect: function() {
|
||||
if (this.dlgAutoCorrect && this.dlgAutoCorrect.isVisible()) return;
|
||||
|
||||
if (!this._mathCorrect)
|
||||
this._mathCorrect = new Common.UI.DataViewStore();
|
||||
if (!this._funcCorrect)
|
||||
this._funcCorrect = new Common.UI.DataViewStore();
|
||||
(new Common.Views.AutoCorrectDialog({
|
||||
this.dlgAutoCorrect = new Common.Views.AutoCorrectDialog({
|
||||
mathStore: this._mathCorrect,
|
||||
functionsStore: this._funcCorrect,
|
||||
api: this.api
|
||||
})).show();
|
||||
});
|
||||
this.dlgAutoCorrect.show();
|
||||
},
|
||||
|
||||
strInputMode: 'Turn on hieroglyphs',
|
||||
|
|
|
@ -1443,15 +1443,18 @@ define([
|
|||
},
|
||||
|
||||
autoCorrect: function() {
|
||||
if (this.dlgAutoCorrect && this.dlgAutoCorrect.isVisible()) return;
|
||||
|
||||
if (!this._mathCorrect)
|
||||
this._mathCorrect = new Common.UI.DataViewStore();
|
||||
if (!this._funcCorrect)
|
||||
this._funcCorrect = new Common.UI.DataViewStore();
|
||||
(new Common.Views.AutoCorrectDialog({
|
||||
this.dlgAutoCorrect = new Common.Views.AutoCorrectDialog({
|
||||
mathStore: this._mathCorrect,
|
||||
functionsStore: this._funcCorrect,
|
||||
api: this.api
|
||||
})).show();
|
||||
});
|
||||
this.dlgAutoCorrect.show();
|
||||
},
|
||||
|
||||
strIgnoreWordsInUPPERCASE: 'Ignore words in UPPERCASE',
|
||||
|
|
Loading…
Reference in a new issue