See Changelog

Monotone-Parent: 6476da6c0f01780fa81d35d80d7075d47b1b084d
Monotone-Revision: a5879e0ca48fa60369415c062b9a5b8e85b3cb84

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-10-13T17:45:01
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2010-10-13 17:45:01 +00:00
parent e3ba9e8775
commit de5adf88ad
2 changed files with 11 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
2010-10-13 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/HTMLElement.js (deselectAll): fixed a bug
where the properties where not removed from the proper element
(table instead of the tbody).
2010-10-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreContext.m

View File

@@ -246,6 +246,11 @@ Element.addMethods({
deselectAll: function(element) {
element = $(element);
if (element.tagName == 'TABLE') {
var tbody = element.down('TBODY');
if (tbody)
element = tbody;
}
var s = element.select("._selected");
for (var i = 0; i < s.length; i++)
s[i].removeClassName("_selected");