diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-17 21:37:13 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-17 21:37:13 +0200 |
commit | fb700de4a40432f26209911548045390a10499b8 (patch) | |
tree | b74ef891f5f472890c4823bded7cc0de883f0202 /apps | |
parent | 9e4a41e9cb672234b3d96fc83c96f93a91a3fb59 (diff) | |
download | nextcloud-server-fb700de4a40432f26209911548045390a10499b8.tar.gz nextcloud-server-fb700de4a40432f26209911548045390a10499b8.zip |
Add effect on addressbook show/hide.
Diffstat (limited to 'apps')
-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 981af6f53a6..110c383ac7c 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -1591,7 +1591,7 @@ $(document).ready(function(){ }); $(document).on('click', '.addressbook', function(event){ - $(this).next().toggle(); + $(this).next().slideToggle(300); return false; }); |