See ChangeLog.

Monotone-Parent: 877003857c443cbee0d3365e26bc55a9110cb707
Monotone-Revision: c8f2954fafcf6e28225083320c49c97918ce2a9d

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-03-31T17:22:01
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle 2011-03-31 17:22:01 +00:00
parent 7ea3edd234
commit 5b11bbc7a5
2 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2011-03-31 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/MailerUI.js (messageListCallback): put an
non-breaking space in empty cells, not only for IE.
* UI/Contacts/UIxContactView.m (_cardStringWithLabel:value:):
remove useless carriage returns to avoid JavaScript errors in IE7.

View file

@ -828,7 +828,7 @@ function messageListCallback(row, data, isNew) {
var cellType = columnsOrder[j];
if (data[cellType]) cell.innerHTML = data[cellType];
else if (Prototype.Browser.IE) cell.innerHTML = '&nbsp;';
else cell.innerHTML = '&nbsp;';
}
}