mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-04 14:46:24 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user