mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
Trigger explicit resize of splitter left panel when undock, because it would not be resized with correct size if it happens after sidebar get resized
This commit is contained in:
parent
2348b7da46
commit
9dd37010d4
@ -699,7 +699,11 @@ app.classes.mail = AppJS.extend(
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (!this.mail_previewAreaActive) splitter.undock();
|
if (!this.mail_previewAreaActive)
|
||||||
|
{
|
||||||
|
splitter.undock();
|
||||||
|
window.setTimeout(function(){splitter.left.trigger('resize.et2_split.mailSplitter');},200);
|
||||||
|
}
|
||||||
this.mail_previewAreaActive = true;
|
this.mail_previewAreaActive = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user