See Changelog.

Monotone-Parent: c9ec5e37f4a0b75a5c85ecbbd8d238cc64a99cd3
Monotone-Revision: 2d1735089eaa66e8672121f889d36aabc3537ce6

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-02-16T00:16:37
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle 2011-02-16 00:16:37 +00:00
parent c248845b83
commit 364d4c82fd
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2011-02-16 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxPreferences.js (-appendSieveFilterRow):
fixed a bug with IE8 that would not set the "checked" attribute
properly on a checkbox.
2011-02-14 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxDatePicker.m

View file

@ -220,9 +220,9 @@ function appendSieveFilterRow(filterTable, number, filter) {
var activeColumn = createElement("td", null, "activeColumn");
var cb = createElement("input", null, "checkBox",
{ checked: filter.active,
type: "checkbox" },
{ type: "checkbox" },
null, activeColumn);
cb.checked = filter.active;
var bound = onScriptActiveCheck.bindAsEventListener(cb);
cb.observe("click", bound);
row.appendChild(activeColumn);