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:35:23 +0200 |
commit | c411dcd30ac0e22102980ea55bf96a5b81312b71 (patch) | |
tree | 8c2bbae256d495919d3511fb13a340ceeb488902 /settings | |
parent | 73da1ca71dc9d5f952686697c7cddc767152b95e (diff) | |
download | nextcloud-server-c411dcd30ac0e22102980ea55bf96a5b81312b71.tar.gz nextcloud-server-c411dcd30ac0e22102980ea55bf96a5b81312b71.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')
-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')); + }); + }); |