* 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:
Klaus Leithoff 2011-04-12 14:32:58 +00:00
parent eeb86b1fd1
commit e4facda1c0

View File

@ -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 {