forked from ryanjsalva/cordova-simulate-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (21 loc) · 1.12 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' data: gap: https://ssl.gstatic.com 'unsafe-eval'; style-src 'self' 'unsafe-inline'; media-src *">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width">
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>Apache Cordova Plugin Test</title>
</head>
<body>
<header>
<div id="back">Back</div>
<div id="title"><!-- dynamically set by the H1 tag in each view --></div>
</header>
<div class="app"><!-- dynamically populated by the contents of each view --></div>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="scripts/index.js"></script>
<script type="text/javascript" src="scripts/platformOverrides.js"></script>
</body>
</html>