UNPKG

dojox

Version:

Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.

30 lines (27 loc) 1.08 kB
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8"/> <meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no"/> <meta name="apple-mobile-web-app-capable" content="yes"/> <title>Round Rect</title> <script type="text/javascript" src="../deviceTheme.js" data-dojo-config="mblThemeFiles: ['base']"></script> <script type="text/javascript" src="../../../dojo/dojo.js" data-dojo-config="async: true, parseOnLoad: true"></script> <script type="text/javascript"> require([ "dojox/mobile/parser", "dojox/mobile", "dojox/mobile/compat" ]); </script> </head> <body style="visibility:hidden;"> <div id="foo" data-dojo-type="dojox.mobile.View"> <h2 data-dojo-type="dojox.mobile.RoundRectCategory">Round Rectangle</h2> <div data-dojo-type="dojox.mobile.RoundRect" data-dojo-props='shadow:true'> This module provides some widgets that can be used to build web-based applications for mobile devices such as iPhone or Android. </div> </div> </body> </html>