<단순작업>

1. 개발용으로 단순변경
2. PMS:7375 건 내용 수정
This commit is contained in:
jity7777 2023-01-31 06:14:16 +00:00
parent 4c7e25e4c5
commit 7b9adc6866
1 changed files with 13 additions and 1 deletions

View File

@ -103,7 +103,19 @@ $(document).ready(function () {
}
else if (cshape != undefined && cshape == 2) {
$("#layermessage").html('<div></div><a href="#" class="mainokbutton" onclick="javascript:hidelayermsg();">확인</a>')
msg("강의장으로 입장합니다.", null, null, null, "location.href='" + href + "'");
// msg("강의장으로 입장합니다.", null, null, null, "location.href='" + href + "'");
let tempmsg = '<div style="font-weight: bold; font-size: 14pt; line-height: 30px;">';
tempmsg += '시청하실 강의 영상은 저작권의 보호를 받는 저작물이므로<br>';
tempmsg += '저작권법 위반 시 법적 처벌을 받을 수 있습니다.<br>';
tempmsg += '<span style="color:red">(복제, 게시, 공유, 배포 금지)</span>';
tempmsg += '</div>';
tempmsg += '<div style="font-weight: bold;font-size: 17pt;color:#338DCD;padding-top:20px">';
tempmsg += '온라인 강의장으로 입장합니다.';
tempmsg += '</div>';
msg(tempmsg, null, null, null, "location.href='" + href + "'");
return false;
}
}