2020-10-12 14:39:23 +09:00
|
|
|
@model NP.Model.VMCRoom
|
|
|
|
|
@{
|
|
|
|
|
Layout = "~/Views/Shared/_LayoutContents.cshtml";
|
|
|
|
|
}
|
|
|
|
|
@if (Model.status > 0)
|
|
|
|
|
{
|
|
|
|
|
@Html.Partial("Contents", Model)
|
|
|
|
|
}
|
|
|
|
|
@section scriptsHeader{
|
|
|
|
|
<style type="text/css">
|
|
|
|
|
.hidecontent{position: fixed; top: -10000px; display: none;}
|
|
|
|
|
.mobileiframe{
|
|
|
|
|
position: fixed; top: 100px; bottom: 200px; left: 0; right: 0;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
|
|
|
|
}
|
|
|
|
|
@section scripts{
|
|
|
|
|
<script>
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
if (@Model.status == 0) {
|
|
|
|
|
self.close();
|
|
|
|
|
}
|
beforeunload 이벤트 발생시 ajax 오류로 학습종료버튼 클릭 또는 beforeunload 이벤트 발생시
ajax : async: false 동기로 호출 하게 변경
관련함수 async 옵션추가
function golog(false, true, false, false);
function capp(url, p, callback, getpost, autoMsg, noBG, jsislayer2, hideBG, noerror, async)
2021-06-11 10:39:16 +09:00
|
|
|
});
|
2020-10-12 14:39:23 +09:00
|
|
|
</script>
|
|
|
|
|
}
|