Fix strict warning by making the setter always return the |val|, which it should always do anyway. r=caillon

This commit is contained in:
jaggernaut%netscape.com 2001-09-30 13:48:03 +00:00
Родитель 19f94533d1
Коммит 4eea6a3db8
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -165,7 +165,7 @@
onget="return this.getAttribute('index');">
<setter>
if (this.index == val)
return;
return val;
this.setAttribute("index", val);
var event = document.createEvent('Events');
event.initEvent('select', false, true);