From f04c1ae0ff0388427f83a579002880d5dbb149d2 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 금, 28 1월 2022 16:12:22 +0900 Subject: [PATCH] 모든 게시물 제목 입력시 특수문자 허용 --- src/main/webapp/scripts/components/utils/dateRangePicker.directive.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js b/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js index 7e6e62a..b5f5eaf 100644 --- a/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js +++ b/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js @@ -78,6 +78,7 @@ } else if ($attrs["rangeType"] === "singleDate") { $($element).daterangepicker({ timePicker: true, + timePicker24Hour : true, timePickerSeconds : true, autoUpdateInput: true, autoApply : true, @@ -86,7 +87,7 @@ //parentEl : $scope.parentEl !== undefined ? $scope.parentEl : "", locale: { - format: 'YYYY-MM-DD hh:mm:ss', + format: 'YYYY-MM-DD H:mm:ss', separator: "~", applyLabel: options.applyLabel, cancelLabel: options.cancelLabel, @@ -102,6 +103,7 @@ } else if ($attrs["rangeType"] === "multiDate") { $($element).daterangepicker({ timePicker: true, + timePicker24Hour : true, timePickerSeconds : true, autoUpdateInput: true, autoApply : true, @@ -110,7 +112,7 @@ //parentEl : $scope.parentEl !== undefined ? $scope.parentEl : "", locale: { - format: 'YYYY-MM-DD hh:mm:ss', + format: 'YYYY-MM-DD H:mm:ss', separator: "~", applyLabel: options.applyLabel, cancelLabel: options.cancelLabel, -- Gitblit v1.8.0