Commit c808acd0 authored by Sergey.Luzyanin's avatar Sergey.Luzyanin

Перенес CErrorData из Word/api.js в Common/apiCommon.js (Bug #31852 -...

Перенес CErrorData из Word/api.js в Common/apiCommon.js (Bug #31852 - [FastEdit] JS ошибка если 1-ый юзер удаляет строку, а 2-ой разбивает ячейку)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@68717 954022d7-b5bf-4e40-9824-e11837661b57
parent 6791ce6e
...@@ -2731,6 +2731,21 @@ ...@@ -2731,6 +2731,21 @@
prot["asc_getImagesCount"] = COpenProgress.prototype.asc_getImagesCount; prot["asc_getImagesCount"] = COpenProgress.prototype.asc_getImagesCount;
prot["asc_getCurrentImage"] = COpenProgress.prototype.asc_getCurrentImage; prot["asc_getCurrentImage"] = COpenProgress.prototype.asc_getCurrentImage;
window["COpenProgress"] = COpenProgress; window["COpenProgress"] = COpenProgress;
function CErrorData()
{
this.Value = 0;
}
CErrorData.prototype.put_Value = function(v){ this.Value = v; };
CErrorData.prototype.get_Value = function() { return this.Value; };
prot = CErrorData.prototype;
prot["put_Value"] = CErrorData.prototype.put_Value;
prot["get_Value"] = CErrorData.prototype.get_Value;
window["CErrorData"] = CErrorData;
} }
)(window); )(window);
...@@ -2793,6 +2808,7 @@ var COpenProgress = window["COpenProgress"]; ...@@ -2793,6 +2808,7 @@ var COpenProgress = window["COpenProgress"];
var asc_TextArtProperties = window["asc_TextArtProperties"]; var asc_TextArtProperties = window["asc_TextArtProperties"];
var asc_TextArtTranslate = window["asc_TextArtTranslate"]; var asc_TextArtTranslate = window["asc_TextArtTranslate"];
var CDocInfo = window["CDocInfo"]; var CDocInfo = window["CDocInfo"];
var CErrorData = window["CErrorData"];
......
...@@ -6811,14 +6811,7 @@ function _asc_scrollTo (x,y) ...@@ -6811,14 +6811,7 @@ function _asc_scrollTo (x,y)
editor.WordControl.m_oScrollVerApi.scrollToY(y); editor.WordControl.m_oScrollVerApi.scrollToY(y);
} }
function CErrorData()
{
this.Value = 0;
}
CErrorData.prototype.put_Value = function(v){ this.Value = v; };
CErrorData.prototype.get_Value = function() { return this.Value; };
//test
// Вставка диаграмм // Вставка диаграмм
asc_docs_api.prototype.asc_getChartObject = function(type) asc_docs_api.prototype.asc_getChartObject = function(type)
......
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