mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 01:13:25 +01:00
fixing a problem with multiple (or size>1) select fields in/for IE (selectbox hack)
This commit is contained in:
parent
2f45dae0bd
commit
5bb170b40e
@ -305,7 +305,8 @@ 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