diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-07-15 12:27:46 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-07-15 12:28:29 +0200 |
commit | 160e701fbf4d87e9673114f0dd51c6705e180475 (patch) | |
tree | d67cc69237228080f9ee6a5ceab5a45a19bedae5 /apps/contacts | |
parent | db034f05ca17a961f99e7eb7033ac38d2615a577 (diff) | |
download | nextcloud-server-160e701fbf4d87e9673114f0dd51c6705e180475.tar.gz nextcloud-server-160e701fbf4d87e9673114f0dd51c6705e180475.zip |
Make list droppable too instead of just the header.
Diffstat (limited to 'apps/contacts')
-rw-r--r-- | apps/contacts/js/contacts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 2ebec4c2423..b4e7cdba444 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -1535,7 +1535,7 @@ Contacts={ return false; }); var accept = 'li:not([data-bookid="'+b+'"])'; - $('#contacts h3[data-id="'+b+'"]').droppable({ + $('#contacts h3[data-id="'+b+'"],#contacts ul[data-id="'+b+'"]').droppable({ drop: Contacts.UI.Contacts.drop, activeClass: 'ui-state-hover', accept: accept |