forked from cjolif/dojo-todo-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
executable file
·25 lines (24 loc) · 865 Bytes
/
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
<!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>ToDo App</title>
<link rel="stylesheet" type="text/css" href="css/tablet.css">
<link type="text/css" href="css/demo.css" rel="stylesheet">
<script type="text/javascript" src="../../dojo/dojo.js" data-dojo-config="parseOnLoad: false,
mblHideAddressBar: false,
mblAndroidWorkaround: false,
mblAlwaysHideAddressBar: false,
async: 1">
</script>
<script>
require(["dojox/mobile/deviceTheme", "./demo.js"], function(){
});
</script>
</head>
<body>
</body>
</html>