diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 17:32:47 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2014-06-02 17:32:59 +0200 |
commit | 39982c2aea841658bd6dbc67db50b568a32c8608 (patch) | |
tree | 9626c258d44924c8b00f36e13cb079dbd2d32d41 /settings | |
parent | e235de98e63c10b0ce19b74a4ef05643ff38b769 (diff) | |
download | nextcloud-server-39982c2aea841658bd6dbc67db50b568a32c8608.tar.gz nextcloud-server-39982c2aea841658bd6dbc67db50b568a32c8608.zip |
fix grouplist behaviour (blank after filtering)
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/users/groups.js | 5 | ||||
-rw-r--r-- | settings/templates/users/part.grouplist.php | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/settings/js/users/groups.js b/settings/js/users/groups.js index 3b487624823..0ff8bdd6384 100644 --- a/settings/js/users/groups.js +++ b/settings/js/users/groups.js @@ -107,6 +107,7 @@ GroupList = { } else { var $li = GroupList.addGroup(group.name, group.usercount); + $li.addClass('appear transparent'); lis.push($li); } @@ -119,7 +120,9 @@ GroupList = { GroupList.noMoreEntries = true; } _.defer(function () { - $(lis).removeClass('transparent'); + $(lis).each(function () { + this.removeClass('transparent') + }); }); } GroupList.updating = false; diff --git a/settings/templates/users/part.grouplist.php b/settings/templates/users/part.grouplist.php index 2a55f8d7b92..a903f43f876 100644 --- a/settings/templates/users/part.grouplist.php +++ b/settings/templates/users/part.grouplist.php @@ -14,7 +14,7 @@ <!-- Everyone --> <li data-gid="" class="isgroup"> <a href="#"> - <span> + <span class="groupname"> <?php p($l->t('Everyone')); ?> </span> </a> |