Commit 1a203d67 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Пока идет сохранение, мы не закрываем документ (отдаем, что документ можифицирован)

Баг http://bugzserver/show_bug.cgi?id=20208

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@49766 954022d7-b5bf-4e40-9824-e11837661b57
parent 98d26000
......@@ -993,9 +993,13 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
},
asc_isDocumentModified: function () {
if (History && History.Is_Modified) {
if (!this.canSave) {
// Пока идет сохранение, мы не закрываем документ
return true;
} else if (History && History.Is_Modified) {
return History.Is_Modified();
}
return false;
},
......
......@@ -563,6 +563,10 @@ asc_docs_api.prototype.SetUnchangedDocument = function()
asc_docs_api.prototype.isDocumentModified = function()
{
if (!this.canSave) {
// Пока идет сохранение, мы не закрываем документ
return true;
}
return this.isDocumentModify;
}
......
......@@ -712,6 +712,10 @@ asc_docs_api.prototype.SetUnchangedDocument = function()
asc_docs_api.prototype.isDocumentModified = function()
{
if (!this.canSave) {
// Пока идет сохранение, мы не закрываем документ
return true;
}
return this.isDocumentModify;
}
......
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