From f4168fcf408e586bd0735357948774721b98c5c3 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 29 Jul 2015 11:01:51 +0200 Subject: [PATCH] Trigger "apprendered" event in users page This will properly update the controls bar width and display the search box initially. --- settings/js/users/users.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/settings/js/users/users.js b/settings/js/users/users.js index 5fd4e9d235..3b25bcd5b5 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')); + }); + });