source: Dev/trunk/src/client/dojox/mobile/tests/test_RoundRect.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>
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        <title>Round Rect</title>
8
9        <script type="text/javascript" src="../deviceTheme.js" data-dojo-config="mblThemeFiles: ['base']"></script>
10        <script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true"></script>
11
12        <script type="text/javascript">
13                require([
14                        "dojox/mobile/parser",
15                        "dojox/mobile",
16                        "dojox/mobile/compat"
17                ]);
18        </script>
19</head>
20<body style="visibility:hidden;">
21        <div id="foo" data-dojo-type="dojox.mobile.View">
22                <h2 data-dojo-type="dojox.mobile.RoundRectCategory">Round Rectangle</h2>
23                <div data-dojo-type="dojox.mobile.RoundRect" data-dojo-props='shadow:true'>
24                        This module provides some widgets that can be used to build web-based
25                        applications for mobile devices such as iPhone or Android.
26                </div>
27        </div>
28</body>
29</html>
Note: See TracBrowser for help on using the repository browser.