-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
executable file
·142 lines (113 loc) · 5.86 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="user-scalable=no; initial-scale=0.5; maximum-scale=0.5; minimum-scale=0.5" />
<link rel="stylesheet" href="libs/app-ui/viewnavigator/viewnavigator.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="assets/css/index.css" />
<link rel="stylesheet" type="text/css" href="assets/fonts/jennasue/stylesheet.css" />
<title>ThreeDoo</title>
</head>
<body>
loading...
<div id="precache">
<div class="viewNavigator_header_backlink"/>
<div class="viewNavigator_header_backlink active" />
<div id="actionsButton" />
<div id="actionsButton" class="active" />
<div id="actionsButton" class="close" />
<div id="actionsButton" class="close active" />
<div class="footer">
<button id="note" />
<button id="pic" />
<button id="audio" />
<button id="note" class="active" />
<button id="pic" class="active" />
<button id="audio" class="active" />
</div>
<div class="footerOptions">
<button class="defaultButton" />
<button class="defaultButton active" />
<button class="warningButton" />
<button class="warningButton active" />
</div>
<div id="addPhotoButton" />
<div id="addPhotoButton" class="active" />
<div id="addAudioButton" />
<div id="addAudioButton" class="active" />
<div id="addLocationButton" />
<div id="addLocationButton" class="active" />
<div class="audioItem">
<div id="playButton" />
<div id="playButton" class="active" />
<div id="playButton" class="pauseButton"/>
<div id="playButton" class="pauseButton active" />
<div id="deleteButton" />
<div id="deleteButton" class="active" />
</div>
<div class="deletePhoto" />
<div class="deletePhoto active" />
<div class="locationButton" />
<div class="locationButton active" />
<div class="listDelete" />
<div class="listDelete.active" />
<div class="toggleKeyboard" />
<div class="toggleKeyboard.active" />
<div class="toggleKeyboard.closeKeyboard" />
<div class="toggleKeyboard.closeKeyboard.active" />
</div>
<!-- LIBS -->
<script src="libs/jquery.js"></script>
<script src="libs/jquery.animate-enhanced.js"></script>
<script src="libs/jquery.lazyload.js"></script>
<script src="libs/raf.js"></script>
<script src="libs/iscroll.js"></script>
<script src="libs/underscore.js"></script>
<script src="libs/backbone.js"></script>
<script src="libs/binaryajax.js"></script>
<script src="libs/exif.js"></script>
<script src="libs/app-ui/viewnavigator/viewnavigator.js"></script>
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="app/model/DatabaseManager.js"></script>
<script type="text/javascript" src="app/model/DataObjects.js"></script>
<script type="text/javascript" src="app/util/TemplateManager.js"></script>
<script type="text/javascript" src="app/util/ImageCapture.js"></script>
<script type="text/javascript" src="app/util/AudioCapture.js"></script>
<script type="text/javascript" src="app/util/FileUtil.js"></script>
<script type="text/javascript" src="app/util/NativeUtil.js"></script>
<script type="text/javascript" src="app/util/ClickInterpreter.js"></script>
<script type="text/javascript" src="app/views/common/ModalView.js"></script>
<script type="text/javascript" src="app/views/common/SliderListItem.js"></script>
<script type="text/javascript" src="app/views/home/HomeView.js"></script>
<script type="text/javascript" src="app/views/list/ListView.js"></script>
<script type="text/javascript" src="app/views/list/RenameListView.js"></script>
<script type="text/javascript" src="app/views/common/DeleteItemModalView.js"></script>
<script type="text/javascript" src="app/views/note/NoteView.js"></script>
<script type="text/javascript" src="app/views/note/AudioModalHelper.js"></script>
<script type="text/javascript" src="app/views/note/ImageModalHelper.js"></script>
<script type="text/javascript" src="app/views/note/PhotoDetailView.js"></script>
<script type="text/javascript" src="app/views/note/LocationView.js"></script>
<script type="text/javascript" src="app/index.js"></script>
<script type="text/javascript">
app.initialize();
</script>
</body>
</html>
html>