mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-04 21:29:45 +02: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:
@ -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 {
|
||||
|
Reference in New Issue
Block a user