mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix selectboxes in Firefox, they did not drop down
This commit is contained in:
parent
b38168a334
commit
31b3987f2d
@ -432,6 +432,10 @@ app.classes.home = AppJS.extend(
|
||||
|
||||
});
|
||||
|
||||
// Rescue selectboxes from Firefox
|
||||
$portlet_container.on('mousedown touchstart', 'select', function(e) {
|
||||
e.stopPropagation();
|
||||
});
|
||||
// Bind window resize to re-layout gridster
|
||||
$j(window).one("resize."+this.et2._inst.uniqueId, function() {
|
||||
// Note this doesn't change the positions, just makes them invalid
|
||||
|
Loading…
Reference in New Issue
Block a user