Fix Bug 36224.

This commit is contained in:
Julia Radzhabova 2017-11-02 11:05:11 +03:00
parent 7af4bc9d7b
commit 8c142cc864

View file

@ -148,8 +148,10 @@ define([
if (el) { if (el) {
var selected = el.find('a.' + this.selectedCls), var selected = el.find('a.' + this.selectedCls),
color = (selected.length>0 && /color-dynamic/.test(selected[0].className)) ? selected.attr('color') : undefined; color = (selected.length>0 && /color-dynamic/.test(selected[0].className)) ? selected.attr('color') : undefined;
if (color) color = color.toUpperCase(); if (color) { // custom color was selected
selected.removeClass(this.selectedCls); color = color.toUpperCase();
selected.removeClass(this.selectedCls);
}
var colors = Common.localStorage.getItem('asc.'+Common.localStorage.getId()+'.colors.custom'); var colors = Common.localStorage.getItem('asc.'+Common.localStorage.getId()+'.colors.custom');
colors = colors ? colors.split(',') : []; colors = colors ? colors.split(',') : [];