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

Проверка на null для asc_formatPainter

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@57449 954022d7-b5bf-4e40-9824-e11837661b57
parent e0daf854
...@@ -2998,7 +2998,8 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS"; ...@@ -2998,7 +2998,8 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
// Формат по образцу // Формат по образцу
asc_formatPainter: function (stateFormatPainter) { asc_formatPainter: function (stateFormatPainter) {
this.wb.getWorksheet().formatPainter(stateFormatPainter); if (this.wb)
this.wb.getWorksheet().formatPainter(stateFormatPainter);
}, },
asc_onMouseUp: function (event, x, y) { asc_onMouseUp: function (event, x, y) {
......
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