mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-17 02:41:02 +01:00
* eMail: fix for styliteTracker Bug#1471 (adding more than 4 lines of addresses to a mail in compose-dialog shrinks the address-area to a height of 0 with IE9)
This commit is contained in:
parent
eeb86b1fd1
commit
e4facda1c0
@ -121,6 +121,8 @@ function addAddressRow(_tableRow)
|
||||
// inputElements[0].focus();
|
||||
|
||||
singleRowHeight = _tableRow.clientHeight;
|
||||
|
||||
if (singleRowHeight == 0) singleRowHeight = 20;
|
||||
if(tableRows.length > 4) {
|
||||
neededHeight = singleRowHeight*4;
|
||||
} else {
|
||||
@ -153,6 +155,7 @@ function fm_compose_addAttachmentRow(_tableRow)
|
||||
// inputElements[0].focus();
|
||||
|
||||
singleRowHeight = _tableRow.clientHeight;
|
||||
if (singleRowHeight == 0) singleRowHeight = 20;
|
||||
if(tableRows.length > 4) {
|
||||
neededHeight = singleRowHeight*4;
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user