mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
mark selected group active
This commit is contained in:
parent
1f4bc7cb10
commit
d650cd66dc
1 changed files with 5 additions and 0 deletions
|
|
@ -22,6 +22,11 @@
|
|||
showGroup: function (gid) {
|
||||
UserList.empty();
|
||||
UserList.update(gid);
|
||||
$('#app-navigation li').removeClass('active');
|
||||
if(gid !== undefined) {
|
||||
//TODO: treat Everyone properly
|
||||
$('#app-navigation li').filterAttr('data-gid', gid).addClass('active');
|
||||
}
|
||||
},
|
||||
|
||||
finishDelete: function (ready) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue