Private GIT

Skip to content
Snippets Groups Projects
Commit 9dfe0f7f authored by Maximilien Bersoult's avatar Maximilien Bersoult
Browse files

Can select multiple users on shared view without popin close

Ref: #5029
parent 3e5b29e8
Branches
Tags
No related merge requests found
......@@ -775,7 +775,8 @@ jQuery(function () {
/* Add event for close all form */
jQuery(document).on('click', function (e) {
if (jQuery(e.target).parents('.cntn').length === 0
&& jQuery(e.target).hasClass('select2-selection__choice__remove') === false) {
&& jQuery(e.target).hasClass('select2-selection__choice__remove') === false &&
jQuery(e.target).parents('.select2-results__option').length === 0) {
jQuery('.toggle_wrapper').hide();
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment