forked from davetaz/Learning_Strat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
29 lines (29 loc) · 1001 Bytes
/
Copy pathmain.html
File metadata and controls
29 lines (29 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<html style="height:100%; margin:0;">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes">
<script src="jquery.js" type="text/javascript" language="javascript"></script>
<script src="offline_API_wrapper.js" type="text/javascript" language="javascript"></script>
</head>
<style>
body {
height:100%;
margin:0;
/*overflow:hidden;*/
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
}
iframe {
width: 100%;
height: 100%;
border: none;
}
</style>
<body>
<iframe id="contentFrame" src="index.html"></iframe>
</body>
</html>