-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (119 loc) · 6.81 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">-->
<meta name="viewport"
content="initial-scale=1, width=device-width, height=device-height, viewport-fit=cover, maximum-scale=1, user-scalable=no, minimum-scale=1">
<meta http-equiv="Content-Security-Policy"
content="default-src * data: gap: https://ssl.gstatic.com; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'">
<!-- <meta http-equiv="Content-Security-Policy" content="default-src 'self' data: gap: https://ssl.gstatic.com; style-src 'self' 'unsafe-inline'; media-src *">-->
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<link rel="stylesheet" type="text/html" href="css/bootstrap337.min.css">
<script src="lib/angular/angular.min.js"></script>
<script src="lib/onsenui/js/onsenui.min.js"></script>
<script src="lib/onsenui/js/angular-onsenui.min.js"></script>
<script>
ons.platform.select('android');
</script>
<link rel="stylesheet" href="lib/onsenui/css/onsenui.css">
<!-- <link rel="stylesheet" href="lib/onsenui/css/old-onsen-css-components.css">-->
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/onsen-css-components.css">
<!--<link rel="stylesheet" href="css/aromaburst.css">-->
<!-- jQuery Mobile -->
<!-- <link rel="jquery_mobile/stylesheet" href="jquery.mobile-1.4.5.min.css" />
<script src="jquery_mobile/jquery-1.9.1.min.js"></script>
<script src="jquery_mobile/jquery.mobile-1.4.5.min.js"></script>-->
<script type="text/javascript" src="cordova.js"></script>
<script type="text/javascript" src="CameraPreview.js"></script>
<script type="text/javascript"
src="https://translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>
<script type="text/javascript" src="lib/jquery-3.3.1.min.js"></script>
<link href='thirdparties/fullcalendar/main.min.css' rel='stylesheet' />
<script type="text/javascript" src="thirdparties/fullcalendar/main.min.js"></script>
<script type="text/javascript" src="thirdparties/fullcalendar/google-calendar.min.js"></script>
<script type="text/javascript" src="thirdparties/svg.min.js"></script>
<script type="text/javascript" src="thirdparties/d3.min.js"></script>
<script type="text/javascript" src="thirdparties/liquidFillGauge.js"></script>
<script type="text/javascript" src="thirdparties/reflection.js"></script>
<!-- <script type="text/javascript" src="thirdparties/echarts.min.js"></script> -->
<script type="text/javascript" src="thirdparties/paper-full.min.js"></script>
<script type="text/javascript" src="thirdparties/echarts470.min.js"></script>
<script type="text/javascript" src="thirdparties/echarts_themes/vintage.js"></script>
<script type="text/javascript" src="thirdparties/echarts_themes/macarons.js"></script>
<script type="text/javascript" src="thirdparties/echarts_themes/dark.js"></script>
<script type="text/javascript" src="thirdparties/echarts_themes/infographic.js"></script>
<script type="text/javascript" src="thirdparties/echarts_themes/shine.js"></script>
<script type="text/javascript" src="thirdparties/echarts_themes/roma.js"></script>
<link href="thirdparties/enjoyhint.css" rel="stylesheet">
<script src="thirdparties/enjoyhint.min.js"></script>
<script type="text/javascript" src="thirdparties/world.js"></script>
<script type="text/javascript" src="thirdparties/jdrupal.min.js"></script>
<script type="text/javascript" src="googleMapStyle.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body id="app-body" onload="startApp()">
<div id="splash-logo" style="width:100%; height: 100%; z-index: 1000!important; background:white; position: fixed;">
</div>
<ons-modal direction="up" id="modal_save_wine">
<ons-icon icon="md-spinner" size="28px" spin></ons-icon>
<p id="wine-save-progress-status"></p>
<ons-progress-bar id="wine-save-progressbar" secondary-value="0" style="display:none;"></ons-progress-bar>
</ons-modal>
<ons-modal direction="up" id="modal_custom">
<ons-icon icon="md-spinner" size="28px" spin></ons-icon>
<p id="modal_text"></p>
</ons-modal>
<ons-navigator animation="lift" id="appNavigator" >
<ons-page>
<ons-splitter id="appSplitter">
<ons-splitter-side id="sidemenu-left" page="sidemenu_left.html" side="left" collapse
width="260px"></ons-splitter-side>
<ons-splitter-side id="sidemenu-right" page="sidemenu_right.html" side="right" width="100%" collapse></ons-splitter-side>
<ons-splitter-content id="splitter-content" page="main.html"></ons-splitter-content>
</ons-splitter>
</ons-page>
</ons-navigator>
<template id="main.html">
<ons-page id="main-page">
</ons-page>
</template>
<template id="aromaburst.html">
<ons-page id="aromaburst-page" class="page-no-bounce">
<ons-toolbar>
<div class="left">
<ons-toolbar-button id="show-menu-button" ontouchend="ABMain.toggleMenu_left()">
<ons-icon icon="fa-bars"></ons-icon>
</ons-toolbar-button>
</div>
<div class="center hint-aromas-food-pairing" style="display: table;" id="aromaburst-page-toolbar-title">
<ons-segment onchange="ABSunBurst.updateSunBurst(this)" style="width:250px">
<button id="aromaburst-title" class="hint-aromaburst"> Aromaburst </button>
<button id="food-title">Food pairing</button>
</ons-segment>
</div>
<div class="right">
<ons-toolbar-button id="right-toolbar-button" ontouchend="ABMain.toggleMenu_right(); ">
</ons-toolbar-button>
</div>
</ons-toolbar>
<ons-progress-bar id="aromaburst-progressbar" secondary-value="100" class="progressStyle hint-end">
</ons-progress-bar>
<div id="sunburstchart"
style="align-self:top; margin-top:0px; width: 100%; height:100%; background-color: white;">
</div>
</ons-page>
</template>
<template id="sidemenu_left.html">
<ons-page id="sidemenu_left-page">
</ons-page>
</template>
<template id="sidemenu_right.html">
<ons-page id="sidemenu_right-page">
</ons-page>
</template>
</body>
</html>