summaryrefslogtreecommitdiffstats
path: root/settings/js/users
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-07-29 11:01:51 +0200
committerVincent Petry <pvince81@owncloud.com>2015-07-29 11:01:51 +0200
commitf4168fcf408e586bd0735357948774721b98c5c3 (patch)
tree02541c68534a3de484478fe2994e3b8fc356a589 /settings/js/users
parent6ada1e327661b7ee2a4cf2d49aa6843352d1c31d (diff)
downloadnextcloud-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.js4
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'));
+ });
+
});