mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 12:39:25 +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)
|
if (iframe)
|
||||||
{
|
{
|
||||||
var self = this;
|
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._hide_navbar.call(self);
|
||||||
self.splitter.dock();
|
self.splitter.dock();
|
||||||
});
|
self.splitter.resize();
|
||||||
|
}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
this.splitter = this.et2.getWidgetById('splitter');
|
this.splitter = this.et2.getWidgetById('splitter');
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user