Monotone-Parent: 5d08c3e624999be469da2fd6046209e122529287

Monotone-Revision: 5b69d2cd30194d3e8db89060210265b500c3a3e0

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2007-11-06T22:46:54
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2007-11-06 22:46:54 +00:00
parent 96b00f426c
commit f3a9826129
+3
View File
@@ -470,10 +470,13 @@ function messageListCallback(http) {
if (table) {
// Update table
var thead = table.tHead;
var addressHeaderCell = thead.rows[0].cells[3];
var tbody = table.tBodies[0];
var tmp = document.createElement('div');
$(tmp).update(http.responseText);
thead.rows[1].parentNode.replaceChild(tmp.firstChild.tHead.rows[1], thead.rows[1]);
addressHeaderCell.replaceChild(tmp.firstChild.tHead.rows[0].cells[3].lastChild,
addressHeaderCell.lastChild);
table.replaceChild(tmp.firstChild.tBodies[0], tbody);
}
else {