-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·38 lines (34 loc) · 1.1 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<meta charset="UTF-8">
<html>
<head>
<title>SnapStack</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery Mobile styles -->
<!--<link rel="stylesheet" href="js/libs/jqm/jquery.mobile-1.3.0.css"/>-->
<link rel="stylesheet" href="js/libs/jqm/themes/snapstack.css" />
<link rel="stylesheet" href="js/libs/jqm/jquery.mobile.structure-1.3.2.min.css" />
<!-- Fix for scrolling on iOS prior to iOS 6 -->
<style type="text/css">
.ui-dialog .ui-header a[data-icon=delete] {
display: none;
}
.scrollable > * {
-webkit-transform: translateZ(0px);
}
.camera {
background-image: url("js/libs/jqm/themes/images/86-camera.png");
background-size: 28px 22px;
background-repeat: no-repeat;
background-position: center top 4px;
}
}
</style>
<!-- Referencing PhoneGap JS -->
<!-- <script src="phonegap.js"></script>-->
<script data-main="js/main" src="js/libs/require/require.js"></script>
</head>
<body>
<div id="container"/>
</body>
</html>