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