mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
Manually trigger resize on splitter after load, prevents scrollbar in global categories.
This commit is contained in:
parent
9009ef44bb
commit
ba106526b1
@ -63,10 +63,13 @@ app.classes.admin = AppJS.extend(
|
||||
if (iframe)
|
||||
{
|
||||
var self = this;
|
||||
jQuery(iframe.getDOMNode()).bind('load', function(){
|
||||
jQuery(iframe.getDOMNode()).off('load.admin')
|
||||
.bind('load.admin', function(){
|
||||
self._hide_navbar.call(self);
|
||||
self.splitter.dock();
|
||||
});
|
||||
self.splitter.resize();
|
||||
}
|
||||
);
|
||||
}
|
||||
this.splitter = this.et2.getWidgetById('splitter');
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user