Commit ffae52cb authored by Alexey.Musinov's avatar Alexey.Musinov

Merge branch 'develop' of https://github.com/ONLYOFFICE/sdkjs into develop

parents 2ca0e582 d3188364
......@@ -3153,7 +3153,7 @@ function Woorksheet(wb, _index, sId){
this.sheetPr = null;
this.aFormulaExt = null;
this.autoFilters = new asc.AutoFilters(this);
this.autoFilters = asc.AutoFilters !== undefined ? new asc.AutoFilters(this) : null;
this.oDrawingOjectsManager = new DrawingObjectsManager(this);
this.contentChanges = new CContentChanges();
......
......@@ -22,7 +22,7 @@
* Pursuant to Section 7  3(e) we decline to grant you any rights under trademark law for use of our trademarks.
*
*/
"use strict";
"use strict";
/* CellEditorView.js
*
......@@ -818,7 +818,7 @@
wsOPEN = this.handlers.trigger( "getCellFormulaEnterWSOpen" ),
ws = wsOPEN ? wsOPEN.model : this.handlers.trigger( "getActiveWS" );
if ( s.length < 1 || s.charAt( 0 ) !== "=" || this.options.cellNumFormat == 2 ) {
if ( s.length < 1 || s.charAt( 0 ) !== "=" || this.options.cellNumFormat == c_oAscNumFormatType.Text ) {
return ret;
}
......
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