user groups: Implement edit features in user group settings overlay.

Follow up for #22214.
This commit is contained in:
Purushottam Tiwari
2022-08-31 22:51:19 +05:30
committed by Tim Abbott
parent b1c81e2e02
commit 7879f78917
14 changed files with 444 additions and 5 deletions

View File

@@ -173,6 +173,13 @@ export function initialize() {
e.preventDefault();
open_create_user_group();
});
$("#manage_groups_container").on("click", ".group-row", show_right_section);
$("#manage_groups_container").on("click", ".fa-chevron-left", () => {
$(".right").removeClass("show");
$(".user-groups-header").removeClass("slide-left");
});
}
export function launch(section) {