1 | <!DOCTYPE HTML> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> |
---|
5 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/> |
---|
6 | <meta name="apple-mobile-web-app-capable" content="yes"/> |
---|
7 | <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"> |
---|
8 | <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE"> |
---|
9 | <title>Scrollable Test App</title> |
---|
10 | <link rel="stylesheet" type="text/css" href="css/tablet.css"> |
---|
11 | <link type="text/css" href="css/demo.css" rel="stylesheet"> |
---|
12 | <style> |
---|
13 | .subject { |
---|
14 | font: bold 16px Helvetica; |
---|
15 | } |
---|
16 | .textBox { |
---|
17 | font-size: 12px; |
---|
18 | font-weight: normal; |
---|
19 | overflow: hidden; |
---|
20 | } |
---|
21 | </style> |
---|
22 | |
---|
23 | |
---|
24 | <script type="text/javascript" src="../../../../dojox/mobile/deviceTheme.js" |
---|
25 | data-dojo-config="mblThemeFiles:['@theme',['dojox/app/tests/nestedTestApp','todo']]"></script> |
---|
26 | |
---|
27 | <script type="text/javascript" src="../../../../dojo/dojo.js" data-dojo-config="parseOnLoad: false, |
---|
28 | mblHideAddressBar: false, |
---|
29 | mblAndroidWorkaround: false, |
---|
30 | mblAlwaysHideAddressBar: true, |
---|
31 | app: {debugApp: 0}, // set debugApp to log |
---|
32 | mvc: {debugBindings: 0}, // set on to debug mvc data bindings |
---|
33 | async: 1"> |
---|
34 | </script> |
---|
35 | <script> |
---|
36 | require(["./src.js"], function(){ |
---|
37 | }); |
---|
38 | </script> |
---|
39 | |
---|
40 | </head> |
---|
41 | <body style="overflow-y:hidden; overflow-x:hidden;"> |
---|
42 | </body> |
---|
43 | </html> |
---|