source: Dev/trunk/src/client/dojox/app/tests/scrollableTestApp2/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.5 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                <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
8                <META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">           
9                <title>Scrollable Test App</title>
10                <link rel="stylesheet" type="text/css" href="css/tablet.css">
11        <!--    <link id="themeStyles" rel="stylesheet" href="../../../../dijit/themes/claro/claro.css"/> -->
12                <link type="text/css" href="css/demo.css" rel="stylesheet">
13        <style>
14        .subject {
15                font: bold 16px Helvetica;
16        }
17        .textBox {
18                font-size: 12px;
19                font-weight: normal;
20                overflow: hidden;
21        }
22        </style>
23       
24               
25                <script type="text/javascript" src="../../../../dojox/mobile/deviceTheme.js"
26                                        data-dojo-config="mblThemeFiles:['@theme',['dojox/app/tests/scrollableTestApp','todo']]"></script>
27
28                <script type="text/javascript" src="../../../../dojo/dojo.js" data-dojo-config="parseOnLoad: false,
29                                mblHideAddressBar: true,
30                                mblAndroidWorkaround: false,
31                                mblAlwaysHideAddressBar: true,
32                                app: {debugApp: 1},  // set debugApp to log app transtions and view activate/deactivate
33                                mvc: {debugBindings: 0},  // set on to debug mvc data bindings
34                                async: 1">
35                </script>
36                <script>
37                        require(["./src.js"], function(){
38                        });
39                </script>
40               
41        </head>
42        <body style="overflow-y:hidden; overflow-x:hidden;">
43        </body>
44</html>
Note: See TracBrowser for help on using the repository browser.