See ChangeLog.

Monotone-Parent: fdaa328ccd09482653fc768fbb48964163c257d9
Monotone-Revision: 8b1ae17d5609c73d58d179e0ba2daf5f08cc26dc

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-11-24T01:12:38
This commit is contained in:
Francis Lachapelle
2011-11-24 01:12:38 +00:00
parent 70636441bb
commit 07ea0de753
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2011-11-24 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/ContactsUI.js (resetCategoriesMenu): the
event listener must be on mousedown since click is already
observed by document.body.
2011-11-21 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/SOGo/WORequest+SOGo.m - for now, we consider iCal 4

View File

@@ -1330,7 +1330,7 @@ function resetCategoriesMenu() {
var catName = UserDefaults["SOGoContactsCategories"][i];
if (catName.length > 0) {
var menuLI = createElement("li");
menuLI.observe("click", onCategoriesMenuItemClick);
menuLI.observe("mousedown", onCategoriesMenuItemClick);
menuLI.category = catName;
menuLI.appendChild(document.createTextNode(catName));
menuUL.appendChild(menuLI);