From 3325ed4b23ccf5cdd1a78507ff4a64ccd1ec59e6 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 목, 09 12월 2021 15:30:35 +0900 Subject: [PATCH] 완료이슈 숨기기 기능 --- src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js b/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js index 8223853..8182c40 100644 --- a/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js +++ b/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js @@ -100,7 +100,7 @@ var target = e.target.parentElement; var parentFound = false; - while (angular.isDefined(target) && target !== null && !parentFound) { + while (angular.isDefined(target) && target !== null && !parentFound && target.className !== null) { if (_.contains(target.className.split(' '), 'multiselect-parent') && !parentFound) { if (target === $dropdownTrigger) { parentFound = true; -- Gitblit v1.8.0