LSformElement_select : Fixed clear button action in recent browser.

This commit is contained in:
Benjamin Renard 2012-05-16 15:18:40 +02:00
parent b6d984f6c5
commit e3ee3911f2

View file

@ -24,6 +24,9 @@ var LSformElement_select = new Class({
},
resetSelect: function(select) {
if ($type(select)!='select') {
select=select.getParent('select');
}
select.selectedIndex=-1;
}
});