diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-02 23:45:23 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-03-02 23:45:23 +0100 |
commit | 5f711912a1f6db7a2f28105101f808e89a2efe50 (patch) | |
tree | 41253fcf569cc3edbda4c67d40e5d8a9f95a3809 | |
parent | 9f087a2070c1115eeb6bd0d961f7629e19eceefc (diff) | |
download | nextcloud-server-5f711912a1f6db7a2f28105101f808e89a2efe50.tar.gz nextcloud-server-5f711912a1f6db7a2f28105101f808e89a2efe50.zip |
remove OC.Router.registerLoadedCallback()
-rw-r--r-- | settings/js/users.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/settings/js/users.js b/settings/js/users.js index 6b5447c7674..284976d3bad 100644 --- a/settings/js/users.js +++ b/settings/js/users.js @@ -372,9 +372,7 @@ $(document).ready(function () { UserList.doSort(); UserList.availableGroups = $('#content table').data('groups'); - OC.Router.registerLoadedCallback(function() { - $(window).scroll(function(e) {UserList._onScroll(e);}); - }); + $(window).scroll(function(e) {UserList._onScroll(e);}); $('table').after($('<div class="loading" style="height: 200px; visibility: hidden;"></div>')); $('select[multiple]').each(function (index, element) { |