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

Список всех формул вынес в WorkbookView в виде переменной и получаем его при инициализации.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55352 954022d7-b5bf-4e40-9824-e11837661b57
parent 76a31d2b
......@@ -2959,7 +2959,7 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
},
asc_getFormulasInfo: function () {
return getFormulasInfo();
return this.wb.getFormulasInfo();
},
asc_recalc : function(isRecalcWB){
......
......@@ -84,6 +84,8 @@
this.cellEditor = undefined;
this.fontRenderingMode = null;
this.formulasList = null; // Список всех формул
this._lockDraw = false;
// Фонт, который выставлен в DrawingContext, он должен быть один на все DrawingContext-ы
......@@ -423,6 +425,8 @@
this.clipboard.Api = this.Api;
this.clipboard.init();
this.formulasList = getFormulasInfo();
if (this.Api.isMobileVersion){
this.MobileTouchManager = new CMobileTouchManager();
this.MobileTouchManager.Init(this);
......@@ -1250,6 +1254,10 @@
}
};
WorkbookView.prototype.getFormulasInfo = function () {
return this.formulasList;
};
// Получаем свойство: редактируем мы сейчас или нет
WorkbookView.prototype.getCellEditMode = function () {
return this.controller.isCellEditMode;
......
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