mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-30 14:40:34 +02:00
CSS / Layout cleanup
- Fix select with tags=true causes hidden WebComponents to display Chosen wants to do sizing calculations which wasn't working properly on w.c.
This commit is contained in:
@ -275,6 +275,17 @@ egw.extend('utils', egw.MODULE_GLOBAL, function()
|
||||
old[name] = this.style[name];
|
||||
}
|
||||
}
|
||||
else if (this.computedStyleMap)
|
||||
{
|
||||
for (var name in props)
|
||||
{
|
||||
let s = this.computedStyleMap().get(name)
|
||||
if (s)
|
||||
{
|
||||
old[name] = s.value || "";
|
||||
}
|
||||
}
|
||||
}
|
||||
jQuery(this).show();
|
||||
oldProps.push(old);
|
||||
});
|
||||
|
Reference in New Issue
Block a user