Monotone-Parent: 9db82412ca8b860c427e66329c7aad43fc24aea4

Monotone-Revision: 3147ad3a58e41e30a98c3efa7f7da7421d6aed2a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-07-21T13:57:24
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-07-21 13:57:24 +00:00
parent f1258d4bc7
commit 92cbd9f20d
2 changed files with 9 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
2010-07-21 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/ContactsUI.js: (dropSelectedContacts):
reenabled copying contacts from system (LDAP) addressbooks.
2010-07-20 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m (_subFoldersFromFolder:): we
+4 -2
View File
@@ -1272,8 +1272,9 @@ function startDragging (itm, e) {
handle.show();
handle.update (count);
if (e.shiftKey || currentFolderIsRemote ())
if (e.shiftKey || currentFolderIsRemote ()) {
handle.addClassName ("copy");
}
}
function whileDragging (itm, e) {
@@ -1311,7 +1312,8 @@ function dropSelectedContacts (action, toId) {
}
}
var fromId = $(selectedFolders[0]).id;
if (!currentFolderIsRemote () && fromId.substring(1) != toId) {
if ((!currentFolderIsRemote () || action != "move")
&& fromId.substring(1) != toId) {
var url = ApplicationBaseURL + fromId + "/" + action
+ "?folder=" + toId + "&uid="
+ contactIds.join("&uid=");