added a vif_mobile.html to test offline running of vif on iOS devices

master
kts@vger 2013-08-04 23:26:28 -07:00
parent 046af3da81
commit 25f3b10676
1 changed files with 21 additions and 0 deletions

21
vif_mobile.html 100644
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html manifest="vif.manifest">
<head>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<title>VIF</title>
<script type="text/javascript" src="CBDL/CBDL.js"></script>
<script type="text/javascript" src="CBDL/CBDL_graphics.js"></script>
<script type="text/javascript" src="vif.js"></script>
<script type="text/javascript">
window.onload = function() {
var jviv = new JVIV();
jviv.Go();
}
</script>
</head>
<body>
</body>
</html>