]> source.dussan.org Git - nextcloud-server.git/commitdiff
Increase initial user count to 50
authorMorris Jobke <hey@morrisjobke.de>
Fri, 16 Jan 2015 17:04:29 +0000 (18:04 +0100)
committerMorris Jobke <hey@morrisjobke.de>
Fri, 16 Jan 2015 17:04:29 +0000 (18:04 +0100)
* fix initial user count if you have a big screen (or a portrait screen)

settings/js/users/users.js
settings/users.php

index 63bba72508e380bb724f44ca783b3551f8850066..db76ed00999108663d46592ff4a6dc5ddb24bcdc 100644 (file)
@@ -12,7 +12,7 @@ var filter;
 
 var UserList = {
        availableGroups: [],
-       offset: 30, //The first 30 users are there. No prob, if less in total.
+       offset: 50, //The first 30 users are there. No prob, if less in total.
                                //hardcoded in settings/users.php
 
        usersToLoad: 10, //So many users will be loaded when user scrolls down
@@ -215,11 +215,11 @@ var UserList = {
                }
        },
        checkUsersToLoad: function() {
-               //30 shall be loaded initially, from then on always 10 upon scrolling
+               //50 shall be loaded initially, from then on always 10 upon scrolling
                if(UserList.isEmpty === false) {
                        UserList.usersToLoad = 10;
                } else {
-                       UserList.usersToLoad = 30;
+                       UserList.usersToLoad = 50;
                }
        },
        empty: function() {
index 94dda43c52360aa105178b00bfbdb869355157e9..b6654e3b0fac6c35b207e9ebf4504d323fb26ae3 100644 (file)
@@ -32,7 +32,7 @@ $recoveryAdminEnabled = OC_App::isEnabled('files_encryption') &&
                                            OC_Appconfig::getValue( 'files_encryption', 'recoveryAdminEnabled' );
 
 if($isAdmin) {
-       $accessibleUsers = OC_User::getDisplayNames('', 30);
+       $accessibleUsers = OC_User::getDisplayNames('', 50);
        $subadmins = OC_SubAdmin::getAllSubAdmins();
 }else{
        /* Retrieve group IDs from $groups array, so we can pass that information into OC_Group::displayNamesInGroups() */
@@ -42,7 +42,7 @@ if($isAdmin) {
                        $gids[] = $group['id'];
                }
        }
-       $accessibleUsers = OC_Group::displayNamesInGroups($gids, '', 30);
+       $accessibleUsers = OC_Group::displayNamesInGroups($gids, '', 50);
        $subadmins = false;
 }