See Changelog

Monotone-Parent: b7e9891a078226bf2611b1f6b38c2ef5495ef405
Monotone-Revision: 9581875f8ebe918c0b36b403e179aa8ee5bbdbc3

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-03-10T21:15:35
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Francis Lachapelle 2011-03-10 21:15:35 +00:00
parent c4c472eeef
commit a6ad7b8cc5
2 changed files with 9 additions and 3 deletions

View File

@ -1,5 +1,9 @@
2011-03-10 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/UIxContactEditor.js (initEditorForm):
the input category field doesn't appear if the card is
read-only. Adjusted the code accordingly.
* UI/WebServerResources/ContactsUI.js
(onCategoriesMenuItemCallback): new callback that refreshes the
displayed card when a category is added or removed.

View File

@ -296,8 +296,10 @@ function initEditorForm() {
}
var emptyCategory = $("emptyCategory");
emptyCategory.tabIndex = 10000;
emptyCategory.observe("click", onEmptyCategoryClick);
}
if (emptyCategory) {
emptyCategory.tabIndex = 10000;
emptyCategory.observe("click", onEmptyCategoryClick);
}
}
document.observe("dom:loaded", initEditorForm);