Merge branch 'master' of http://subsub8729@vcs.iten.co.kr:9999/hylee/kcc_adr_advc_git
This commit is contained in:
commit
3e92e0dde1
@ -55,8 +55,9 @@ content="default-src * self blob: data: gap:; style-src * self 'unsafe-inline' b
|
||||
|
||||
<script type="text/javascript" src="<c:url value='/js/web_common.js'/>"></script>
|
||||
|
||||
<c:if test="${!fn:contains(URL , 'main/mainPage.do')}">
|
||||
<script type="text/javascript" src="<c:url value='/js/kccadr/kccadrCom.js?5'/>" defer="defer"></script>
|
||||
<%-- <script type="text/javascript" src="<c:url value='/js/kccadr/kccadrConstants.js'/>"></script> --%>
|
||||
</c:if>
|
||||
<!-- 전자조정 공통 -->
|
||||
|
||||
|
||||
|
||||
@ -17,9 +17,9 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,user-scalable=yes">
|
||||
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/swiper.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/swiper.min.css">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/main.css">
|
||||
<!-- <link rel="stylesheet" href="/kccadrPb/usr/css/swiper.css"defer="defer"> -->
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/swiper.min.css" defer="defer">
|
||||
<link rel="stylesheet" href="/kccadrPb/usr/css/main.css" defer="defer">
|
||||
|
||||
<style>
|
||||
.today_close label{position: relative;}
|
||||
@ -96,6 +96,40 @@ function fn_egov_inqire_notice(bbsId, nttId) {
|
||||
document.frm.action = "<c:url value='/web/cop/bbsWeb/selectBoardDetail.do'/>?pubDetail=Y";
|
||||
document.frm.submit();
|
||||
}
|
||||
|
||||
function commonPopWindowopenForm(surl, popupwidth, popupheight, name, frm) {
|
||||
|
||||
if (popupwidth > screen.width)
|
||||
popupwidth = screen.width;
|
||||
|
||||
if (popupheight > screen.height)
|
||||
popupheight = screen.height;
|
||||
|
||||
var top = 0;
|
||||
var left = 0;
|
||||
|
||||
if (isNaN(parseInt(popupwidth))) {
|
||||
top = (screen.availHeight - 600) / 2;
|
||||
left = (screen.availWidth - 800) / 2;
|
||||
} else {
|
||||
top = (screen.availHeight - popupheight) / 2;
|
||||
left = (screen.availWidth - popupwidth) / 2;
|
||||
}
|
||||
|
||||
if (top < 0) top = 0;
|
||||
if (left < 0) left = 0;
|
||||
|
||||
var option = "dependent=yes,fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,left=" + left + ",top=" + top + ",width=" + popupwidth + ",height=" + popupheight;
|
||||
|
||||
if (name == null || name == "") { name = "Popup"; }
|
||||
window.open("", name, option);
|
||||
frm.attr('target', name);
|
||||
frm.attr('action', surl);
|
||||
frm.method = "post";
|
||||
frm.submit();
|
||||
// 초기화..
|
||||
frm.attr('target', '_self');
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<c:if test="${fn:length(popupList) > 0}" >
|
||||
|
||||
Loading…
Reference in New Issue
Block a user