source: Dev/trunk/src/client/dojox/mobile/tests/imageControlsApp/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.0 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                <link href="../../themes/iphone/iphone-app.css" rel="stylesheet">
7                <link href="styles/styles.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"
16                                data-dojo-config="parseOnLoad: false, mobileAnim:'slide'"></script>
17   
18                <script language="JavaScript" type="text/javascript">
19                        dojo.require("dojo.io.script");
20                        dojo.require("dojox.mobile.app");
21                        dojo.requireIf(!dojo.isWebKit, "dojox.mobile.app.compat");
22     
23                        var appInfo = {
24                                id: "org.dojo.imageWidgetApp",
25                                title: "Mobile App With Image Widgets",
26                                initialScene: "main"
27                        };
28                       
29                        dojo.ready(dojox.mobile.app.init);
30                </script>
31        </head>
32        <body>
33               
34        </body>
35</html>
Note: See TracBrowser for help on using the repository browser.