mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
fixing a problem with multiple (or size>1) select fields in/for IE (selectbox hack)
This commit is contained in:
parent
16c190cfe2
commit
9c4c261c9b
@ -306,6 +306,9 @@ function dropdown_menu_hack(el)
|
||||
if(el.runtimeStyle.behavior.toLowerCase()=="none"){return;}
|
||||
el.runtimeStyle.behavior="none";
|
||||
|
||||
if (el.multiple ==1) {return;}
|
||||
if (el.size > 1) {return;}
|
||||
|
||||
var ie5 = (document.namespaces==null);
|
||||
el.ondblclick = function(e)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user