Monotone-Parent: c95c2d363227ea99e8abcda3beacfc071053d30b

Monotone-Revision: cac720ccc4cdf4de23aa3a87fa473d110909ddbc

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-03-30T16:05:33
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-03-30 16:05:33 +00:00
parent 10345b1927
commit 8953809290
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,9 @@
2011-03-30 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/UIxTaskEditor.js (initializeStatusLine):
bind onStatusListChange as callback to "change" rather than
"mouseup" as it otherwise fails to be invoked on Chrome.
* SoObjects/SOGo/SOGoBuild.m: export new SOGoVersion NSString.
* Main/SOGo.m (+initialize): moved most initialization code from

View File

@ -296,8 +296,9 @@ function onStatusListChange(event) {
function initializeStatusLine() {
var statusList = $("statusList");
if (statusList)
statusList.observe("mouseup", onStatusListChange, false);
if (statusList) {
statusList.observe("change", onStatusListChange);
}
}
function onTaskEditorLoad() {