source: Dev/trunk/src/client/dojox/mobile/tests/dialogApp/index.html

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 1.1 KB
Line 
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, user-scalable=no"/>
5                <meta name="apple-mobile-web-app-capable" content="yes" />
6                <title>Mobile App With Dialog Boxes</title>
7                <link href="../../themes/iphone/iphone-app.css" rel="stylesheet">
8                <style>
9            .lnk {
10                font-size: 17px;
11                color: cyan;
12                text-decoration: none;
13            }
14                </style>
15                <script type="text/javascript" src="../../../../dojo/dojo.js" data-dojo-config="parseOnLoad: false"></script>
16   
17                <script language="JavaScript" type="text/javascript">
18                        dojo.require("dojox.mobile.app");
19                        dojo.requireIf(!dojo.isWebKit, "dojox.mobile.app.compat");
20     
21            var appInfo = {
22                id: "org.dojo.simpleApp",
23                title: "Mobile App With Dialog Boxes",
24                initialScene: "main"
25            };
26     
27            dojo.ready(dojox.mobile.app.init);
28                </script>
29        </head>
30        <body>
31               
32        </body>
33</html>
Note: See TracBrowser for help on using the repository browser.