1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/> |
---|
5 | <meta name="apple-mobile-web-app-capable" content="yes" /> |
---|
6 | <title>Multi Scene App Test</title> |
---|
7 | <!-- TODO: check all these paths --> |
---|
8 | <link href="../../../mobile/themes/iphone/base.css" rel="stylesheet"> |
---|
9 | <link href="../../../mobile/themes/iphone/TabBar.css" rel="stylesheet"> |
---|
10 | <link href="../../../mobile/themes/iphone/IconContainer.css" rel="stylesheet"> |
---|
11 | <link href="../../../mobile/themes/iphone/Button.css" rel="stylesheet"> |
---|
12 | <link href="../../../mobile/themes/iphone/CheckBox.css" rel="stylesheet"> |
---|
13 | <link href="../../../mobile/themes/iphone/ComboBox.css" rel="stylesheet"> |
---|
14 | <link href="../../../mobile/themes/iphone/RadioButton.css" rel="stylesheet"> |
---|
15 | <link href="../../../mobile/themes/iphone/Slider.css" rel="stylesheet"> |
---|
16 | |
---|
17 | <style> |
---|
18 | html,body { |
---|
19 | width: 100%; |
---|
20 | height: 100%; |
---|
21 | background: #eee; |
---|
22 | font-family: arial; |
---|
23 | color: #333; |
---|
24 | overflow: hidden; |
---|
25 | margin: 0; |
---|
26 | padding: 0; |
---|
27 | visibility: visible; |
---|
28 | } |
---|
29 | |
---|
30 | #splash { |
---|
31 | width: 90%; |
---|
32 | height: 90%; |
---|
33 | margin: auto; |
---|
34 | overflow: hidden; |
---|
35 | border: 2px solid green; |
---|
36 | color: #333; |
---|
37 | text-align: center; |
---|
38 | } |
---|
39 | |
---|
40 | .mblListItemIcon { |
---|
41 | top: 7px; |
---|
42 | -webkit-transform: none; |
---|
43 | } |
---|
44 | |
---|
45 | </style> |
---|
46 | <script type="text/javascript"> |
---|
47 | dojoConfig = { |
---|
48 | parseOnLoad: false, |
---|
49 | mblHideAddressBar: false, |
---|
50 | mblAndroidWorkaround: false, |
---|
51 | mblAlwaysHideAddressBar: false, |
---|
52 | traceSet:{ |
---|
53 | "loader-inject":0, |
---|
54 | "loader-define":0, |
---|
55 | "loader-runFactory":0, |
---|
56 | "loader-execModule":0, |
---|
57 | "loader-execModule-out":0, |
---|
58 | "loader-defineModule":0 |
---|
59 | }, |
---|
60 | async:1, |
---|
61 | app: {debugApp: 1} // set debugApp to log app transtions and view activate/deactivate |
---|
62 | }; |
---|
63 | //console.log("pre dojo"); |
---|
64 | </script> |
---|
65 | <script type="text/javascript" src="../../../../dojo/dojo.js"></script> |
---|
66 | <script> |
---|
67 | //console.log("post dojo"); |
---|
68 | // the actual launcher |
---|
69 | require(["./multiSceneApp.js"], function(){}); |
---|
70 | </script> |
---|
71 | |
---|
72 | <!--script type="text/javascript" src="multiSceneApp.js"></script--> |
---|
73 | |
---|
74 | </head> |
---|
75 | <body> |
---|
76 | <!-- <div style="width: 100%; height: 100%" id="app1"><div> --> |
---|
77 | </body> |
---|
78 | </html> |
---|