mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-10 10:55:08 +00:00
Fix classification menu in component editor
This commit is contained in:
@@ -13,6 +13,9 @@ Bug fixes
|
||||
4. SOGoDefaults.plist
|
||||
- Fixed handling of LDAP DN containing special characters (#2152, #2207)
|
||||
- Fixed handling of credential files for older GNUsteps (#2216)
|
||||
- fixed tooltips in contacts list
|
||||
- fixed classification menu in component editor
|
||||
- fixed link to ACL editor for 'any authenticated user'
|
||||
|
||||
2.0.4a (2013-01-30)
|
||||
------------------
|
||||
|
||||
@@ -200,9 +200,7 @@ function onComponentEditorLoad(event) {
|
||||
if (tmp) {
|
||||
var menuItems = tmp.childNodesWithTag("li");
|
||||
for (var i = 0; i < menuItems.length; i++)
|
||||
menuItems[i].on("mousedown",
|
||||
onMenuSetClassification.bindAsEventListener(menuItems[i]),
|
||||
false);
|
||||
menuItems[i].on("mousedown", onMenuSetClassification);
|
||||
}
|
||||
|
||||
tmp = $("replyList");
|
||||
|
||||
@@ -1238,7 +1238,7 @@ function popupToolbarMenu(node, menuId) {
|
||||
visibility: "visible" });
|
||||
|
||||
document.currentPopupMenu = popup;
|
||||
$(document.body).observe("mouseup", onBodyClickMenuHandler);
|
||||
$(document.body).on("mouseup", onBodyClickMenuHandler);
|
||||
}
|
||||
|
||||
/* contact selector */
|
||||
|
||||
Reference in New Issue
Block a user