Commit bf97327e authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

add asc_SpellCheckDisconnect

На ViewMode отключаем проверку орфографии.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@62789 954022d7-b5bf-4e40-9824-e11837661b57
parent 552bd6bf
......@@ -1575,6 +1575,12 @@ asc_docs_api.prototype._coSpellCheckInit = function() {
asc_docs_api.prototype.asc_getSpellCheckLanguages = function() {
return g_spellCheckLanguages;
};
asc_docs_api.prototype.asc_SpellCheckDisconnect = function() {
if (!this.SpellCheckApi)
return; // Error
this.SpellCheckApi.disconnect();
this.WordControl.m_oLogicDocument.TurnOff_CheckSpelling();
};
asc_docs_api.prototype._onUpdateDocumentCanSave = function () {
// Можно модифицировать это условие на более быстрое (менять самим состояние в аргументах, а не запрашивать каждый раз)
......@@ -6771,6 +6777,8 @@ asc_docs_api.prototype.SetViewMode = function( isViewMode )
{
if (isViewMode)
{
this.asc_SpellCheckDisconnect();
this.isViewMode = true;
this.ShowParaMarks = false;
CollaborativeEditing.m_bGlobalLock = true;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment