@ -16822,7 +16822,7 @@ BI.extend(BI.DOM, {
},
isColor: function (color) {
return this.isRGBColor(color) || this.isHexColor(color);
return color && (this.isRGBColor(color) || this.isHexColor(color));
isRGBColor: function (color) {
@ -16853,7 +16853,7 @@ BI.extend(BI.DOM, {
//获取对比颜色
getContrastColor: function (color) {
if (!color) {
if (!color || !this.isColor(color)) {
return "";
}
if (this.isDarkColor(color)) {
@ -22840,7 +22840,7 @@ BI.extend(BI.DOM, {
@ -22871,7 +22871,7 @@ BI.extend(BI.DOM, {
@ -104,7 +104,7 @@ BI.extend(BI.DOM, {
@ -135,7 +135,7 @@ BI.extend(BI.DOM, {