From 895380929017ee42cd11a93c9aef17cc5b88a4f6 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 30 Mar 2011 16:05:33 +0000 Subject: [PATCH] Monotone-Parent: c95c2d363227ea99e8abcda3beacfc071053d30b Monotone-Revision: cac720ccc4cdf4de23aa3a87fa473d110909ddbc Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-03-30T16:05:33 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ UI/WebServerResources/UIxTaskEditor.js | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0708e0cdc..7048ec139 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2011-03-30 Wolfgang Sourdeau + * 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 diff --git a/UI/WebServerResources/UIxTaskEditor.js b/UI/WebServerResources/UIxTaskEditor.js index ac8bfa83a..e0f9ae27f 100644 --- a/UI/WebServerResources/UIxTaskEditor.js +++ b/UI/WebServerResources/UIxTaskEditor.js @@ -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() {