-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.html
30 lines (27 loc) · 1.13 KB
/
demo.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
<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="apple-touch-icon-precomposed" href="images/todolist.png"/>
<link rel="apple-touch-startup-image" href="images/todo-splash.png" />
<title>Simple ToDo App</title>
<link type="text/css" href="css/demo.css" rel="stylesheet">
<script type="text/javascript" src="../../dojox/mobile/deviceTheme.js"
data-dojo-config="mblThemeFiles:['@theme',['demos/simple-todo-app','todo']]"></script>
<script type="text/javascript" src="../../dojo/dojo.js" data-dojo-config="parseOnLoad: false,
mblHideAddressBar: false,
mblAndroidWorkaround: false,
mblAlwaysHideAddressBar: false,
app: {debugApp: 1}, // set debugApp to log app transtions and view activate/deactivate
mvc: {debugBindings: 1}, // set on to debug mvc data bindings
async: 1">
</script>
<script>
require(["./src.js"], function(){
});
</script>
</head>
<body style="overflow-y:hidden; overflow-x:hidden;">
</body>
</html>