contentpreview.html 2.47 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
	<meta http-equiv="Pragma" content="no-cache">
	<meta http-equiv="Cache-Control" content="no-store">
	<meta http-equiv="Cache-Control" content="no-cache">
	<meta http-equiv="Expires" content="-1">
	<meta name="viewport" content="">
11

12 13 14
	<title> </title>

	<link rel="stylesheet" type="text/css" href="./common/css/jquery-ui.css" />
15
	<link rel="stylesheet" type="text/css" href="./common/css/jquery.toastmessage.css" />
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
	<link rel="stylesheet" type="text/css" href="./common/css/default.css" />
	<link rel="stylesheet" type="text/css" href="./common/css/screenLock.css?__UPDATEID__" />
	<link rel="stylesheet" type="text/css" href="./css/reset.css?__UPDATEID__" />

	<!-- CSSビュー -->
	<link rel="stylesheet" type="text/css" href="css/layout/viewer.css?__UPDATEID__" />
	<link rel="stylesheet" type="text/css" href="common/css/jquery.powertip.css?__UPDATEID__" />
	<link rel="stylesheet" type="text/css" href="css/layout/Anket.css?__UPDATEID__" />
	<link rel="stylesheet" type="text/css" href="css/delete_shiori.css?__UPDATEID__" />

	<script type="text/javascript" src="./common/js/jquery-1.8.1.min.js?__UPDATEID__"></script>
	<script type="text/javascript" src="./common/js/jquery-ui-1.8.23.custom.min.js?__UPDATEID__"></script>
	<script type="text/javascript" src="./common/js/jquery.toastmessage.js?__UPDATEID__"></script>
	<script type="text/javascript" src="./common/js/avweb.js?__UPDATEID__"></script>
	<script type="text/javascript" src="./common/js/i18n.js?__UPDATEID__"></script>
	<script type="text/javascript" src="./common/js/common.js?__UPDATEID__"></script>
	<script type="text/javascript" src="./common/js/uuid.js?__UPDATEID__"></script>
33 34 35
	<script type="text/javascript" src="./common/js/html2canvas.js?__UPDATEID__" ></script>
	<script type="text/javascript" src="./common/js/promise-6.1.0.min.js?__UPDATEID__" ></script>

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

	<script type="text/javascript" src="./js/contentpreview.js?__UPDATEID__"></script>

    <style>
        html{
            -ms-touch-action : none;
            touch-action : none ;
        }
    </style>

	<script type="text/javascript">
		$(document).ready(function() {
			CONTENTPREVIEW.ready();
		});
	</script>

</head>
<body id="previewviewer" oncontextmenu="return true">

<div id="viewer" style="display:none;" >
</div>

<iframe style="height:0px;width:0px;visibility:hidden" src="about:blank">
    this frame prevents back forward cache
</iframe>
</body>
</html>