diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-07-29 11:01:51 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-07-29 11:01:51 +0200 |
commit | f4168fcf408e586bd0735357948774721b98c5c3 (patch) | |
tree | 02541c68534a3de484478fe2994e3b8fc356a589 /settings/js/users | |
parent | 6ada1e327661b7ee2a4cf2d49aa6843352d1c31d (diff) | |
download | nextcloud-server-f4168fcf408e586bd0735357948774721b98c5c3.tar.gz nextcloud-server-f4168fcf408e586bd0735357948774721b98c5c3.zip |
Trigger "apprendered" event in users page
This will properly update the controls bar width and display the search
box initially.
Diffstat (limited to 'settings/js/users')
-rw-r--r-- | settings/js/users/users.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 5fd4e9d235b..3b25bcd5b5f 100644 --- a/settings/js/users/users.js +++ b/settings/js/users/users.js @@ -880,4 +880,8 @@ $(document).ready(function () { // trigger loading of users on startup UserList.update(UserList.currentGid, initialUserCountLimit); + _.defer(function() { + $('#app-content').trigger($.Event('apprendered')); + }); + }); |