<기능개선>

1. PMS NO : 7570
2. (주요)작업내용 
(1) FO/Views/Shared/Partial/FileScript.cshtml
 - 스크립트파일 버전 up
(2) FO/js/filescript.js
 - 등로가능한 파일 확장자 추가
This commit is contained in:
jity7777 2023-03-20 02:14:33 +00:00
parent 30a6a24534
commit 9ab63ea780
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
<script type="text/javascript" src="/js/filescript.js"></script> <script type="text/javascript" src="/js/filescript.js?ver=20230320"></script>

View File

@ -9,7 +9,7 @@
if (ul.attr("data-isimage") == "1" && "png,jpg,gif".indexOf(fext) < 0) { if (ul.attr("data-isimage") == "1" && "png,jpg,gif".indexOf(fext) < 0) {
$(f).val(""); $(f).val("");
msg("이미지파일만 첨부할 수 있습니다."); msg("이미지파일만 첨부할 수 있습니다.");
} else if (",xlsx,xls,hwp,pdf,zip,jpg,gif,png,txt,pptx,ppt,doc,docx,psd,mp4,mp3,wmv,".indexOf("," + fext + ",") < 0) { } else if (",xlsx,xls,hwp,hwpx,pdf,zip,jpg,gif,png,txt,pptx,ppt,doc,docx,psd,mp4,mp3,wmv,".indexOf("," + fext + ",") < 0) {
$(f).val(""); $(f).val("");
msg("허용된 파일유형이 아닙니다.(" + fext + ")"); msg("허용된 파일유형이 아닙니다.(" + fext + ")");
} }