OWL ITS + 탐지시스템(인터넷 진흥원)
이민희
2022-01-24 7f5428f3897cf22c34a00829a8eae6f260669999
src/main/webapp/custom_components/js-autocomplete-single/js-autocomplete-single.js
@@ -22,7 +22,7 @@
                source : '&',
                page : "=",
                totalPage : "=",
                inputDisabled : "=",
                inputDisabled : "=?",
                customInput : "=",
            },
            templateUrl : "custom_components/js-autocomplete-single/js-autocomplete-single.html",
@@ -31,7 +31,7 @@
                var blank_pattern = /^\s+|\s+$/g;
                //  입력 필드 비활성화
                if (!angular.isDefined($scope.inputDisabled)) {
                if (!$rootScope.isDefined($scope.inputDisabled)) {
                    $scope.inputDisabled = false;
                }
@@ -227,7 +227,7 @@
                function toggleDropdown() {
                    //  아이템이 선택되어 있을 경우 목록 레이어는 표시될 수 없다.
                    $scope.open = true;
                    if ($scope.selectedModel != null && $scope.selectedModel.length > 0) {
                    if ($rootScope.isDefined($scope.selectedModel) && $scope.selectedModel.length > 0) {
                        $scope.open = false;
                        $scope.options = [];
                    }