Commit 4bfe40db authored by Julia Radzhabova's avatar Julia Radzhabova

[SSE] Debug adding alt.text for tables.

parent e258200a
...@@ -117,10 +117,8 @@ define([ 'text!spreadsheeteditor/main/app/template/TableSettingsAdvanced.temp ...@@ -117,10 +117,8 @@ define([ 'text!spreadsheeteditor/main/app/template/TableSettingsAdvanced.temp
getSettings: function() { getSettings: function() {
if (this.isAltTitleChanged || this.isAltDescChanged) { if (this.isAltTitleChanged || this.isAltDescChanged) {
var info = new Asc.AdvancedTableInfoSettings(); var info = new Asc.AdvancedTableInfoSettings();
if (this.isAltTitleChanged) info.asc_setTitle(this.inputAltTitle.getValue());
info.asc_setTitle(this.inputAltTitle.getValue()); info.asc_setDescription(this.textareaAltDescription.val());
if (this.isAltDescChanged)
info.asc_setDescription(this.textareaAltDescription.val());
return info; return info;
} }
}, },
......
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