mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-22 21:30:54 +01:00
make sure compose window will not be subject of further height adaptions in inital step of opening, if the compose window is opened with a height smaller than 650
This commit is contained in:
parent
8dc1d5758e
commit
cbb3055fc5
@ -59,7 +59,8 @@ function initAll()
|
||||
sizeAdjusted = true;
|
||||
window.resizeBy(0,1000-window.outerHeight);
|
||||
}
|
||||
if (screen.height>screen.availHeight && !sizeAdjusted) window.resizeBy(0,screen.availHeight-screen.height);
|
||||
var t = window.outerHeight+screen.availHeight-screen.height;
|
||||
if (screen.height>screen.availHeight && !sizeAdjusted && t>650) window.resizeBy(0,screen.availHeight-screen.height);
|
||||
//tab.init();
|
||||
//alert(document.onkeydown);
|
||||
var titletext = document.getElementById('fm_compose_subject').value;
|
||||
|
Loading…
Reference in New Issue
Block a user