1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 23:48:47 +00:00

[group] added 'search group members'

- 'search group members' is offered only when there are more than 10
members in the group
This commit is contained in:
llj
2021-10-25 17:19:44 +08:00
parent 63697c5793
commit a6470470d5
7 changed files with 561 additions and 346 deletions

View File

@@ -1382,4 +1382,11 @@ export const Utils = {
return level;
},
// for a11y
onKeyDown: function(e) {
if (e.key == 'Enter' || e.key == 'Space') {
e.target.click();
}
}
};