js strict warning in colorpicker.xml
This commit is contained in:
cbiesinger%web.de 2002-06-11 20:51:21 +00:00
Родитель 6197948cc3
Коммит bd4ae36a80
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -110,6 +110,8 @@
return this.mSelectedCell ? this.mSelectedCell.getAttribute("color") : null;
]]></getter>
<setter><![CDATA[
if (!val)
return null;
val = val.toUpperCase();
// Translate standard HTML color strings:
if (val[0] != "#") {
@ -169,6 +171,7 @@
this.selectCell(cells[0]);
this.hoverCell(this.mSelectedCell);
}
return null;
]]></setter>
</property>