]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix #1276 - use registerLoadedCallback()
authorThomas Mueller <thomas.mueller@tmit.eu>
Thu, 31 Jan 2013 23:33:14 +0000 (00:33 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Thu, 31 Jan 2013 23:33:14 +0000 (00:33 +0100)
settings/js/users.js

index 424d00b51a7aa66f6c7da9952114783fd5eb708a..ce49eb69c3c371e9e0ac975d25c9dd9ddaebe59b 100644 (file)
@@ -237,12 +237,14 @@ var UserList = {
             });
         }
     }
-}
+};
 
 $(document).ready(function () {
 
     $('tbody tr:last').bind('inview', function (event, isInView, visiblePartX, visiblePartY) {
-        UserList.update();
+               OC.Router.registerLoadedCallback(function(){
+               UserList.update();
+               });
     });
 
     function setQuota(uid, quota, ready) {
@@ -257,7 +259,6 @@ $(document).ready(function () {
         );
     }
 
-
     $('select[multiple]').each(function (index, element) {
         UserList.applyMultiplySelect($(element));
     });