28 lines
665 B
Plaintext
28 lines
665 B
Plaintext
@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();
|
|
}
|
|
});
|
|
function closestudy() {
|
|
self.close();
|
|
}
|
|
</script>
|
|
} |