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

Поправил проверку на прием эвента для цветовой схемы.

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@56229 954022d7-b5bf-4e40-9824-e11837661b57
parent 0e7a6e77
......@@ -3064,14 +3064,14 @@ var ASC_DOCS_API_USE_EMBEDDED_FONTS = "@@ASC_DOCS_API_USE_EMBEDDED_FONTS";
asc_SendThemeColors : function (colors, standart_colors) {
this._gui_control_colors = { Colors : colors, StandartColors : standart_colors };
var ret = this.handlers.trigger("asc_onSendThemeColors", colors, standart_colors);
if (ret)
if (false !== ret)
this._gui_control_colors = null;
},
asc_SendThemeColorSchemes : function (param) {
this._gui_color_schemes = param;
var ret = this.handlers.trigger("asc_onSendThemeColorSchemes", param);
if (ret)
if (false !== ret)
this._gui_color_schemes = null;
},
asc_ChangeColorScheme : function (index_scheme) {
......
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