Monotone-Parent: 398264edd129900ccebb2b98453a9554c39010b4

Monotone-Revision: e0a770df71cd2e2fd2884aae657ca3a8e0e6a722

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-08-06T12:40:57
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-08-06 12:40:57 +00:00
parent 4613beebaa
commit eabd9d5a8e
2 changed files with 9 additions and 1 deletions
+7
View File
@@ -1,3 +1,10 @@
2010-08-06 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/HTMLElement.js: (deselectAll): if the
container has a "selectedElements" attribute, then it's no longer
required to wander through the "selectedIds" attribute. This fixes
a strange bug on IE when modifying the selection on LI lists.
2010-08-04 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/generic.js (createDialog): when the
+2 -1
View File
@@ -229,8 +229,9 @@ Element.addMethods({
for (var i = 0; i < element.selectedElements.length; i++)
element.selectedElements[i].removeClassName('_selected');
element.selectedElements = null;
element.selectedIds = null;
}
if (element.selectedIds) {
else if (element.selectedIds) {
for (var i = 0; i < element.selectedIds.length; i++) {
var e = element.down('#' + element.selectedIds[i]);
if (e && e.hasClassName('_selected'))