diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-19 14:55:14 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-19 14:55:14 +0200 |
commit | 33aec973dfdce7307480f03417b14de55f30d9d2 (patch) | |
tree | b6458db3a6a7f3fc9d5ecf306209c99ddebc5729 /apps/contacts/js | |
parent | 0469f529fa3c5bb5c643f4c253f886f58ca50ba7 (diff) | |
download | nextcloud-server-33aec973dfdce7307480f03417b14de55f30d9d2.tar.gz nextcloud-server-33aec973dfdce7307480f03417b14de55f30d9d2.zip |
Loading of contacts was placed outside of $(document).ready() function.
Diffstat (limited to 'apps/contacts/js')
-rw-r--r-- | apps/contacts/js/contacts.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/contacts/js/contacts.js b/apps/contacts/js/contacts.js index 1408e840f2b..56dc2d422c7 100644 --- a/apps/contacts/js/contacts.js +++ b/apps/contacts/js/contacts.js @@ -1699,5 +1699,6 @@ $(document).ready(function(){ } $('#contacts_propertymenu_dropdown a').click(propertyMenuItem); $('#contacts_propertymenu_dropdown a').keydown(propertyMenuItem); + + Contacts.UI.Contacts.update(); }); -Contacts.UI.Contacts.update(); |