source: trunk/playground/GWT-Examples/GWT-JSNI-example/war/GWT_JSNI_example.html

Last change on this file was 481, checked in by lgiessmann, 13 years ago
File size: 2.2 KB
Line 
1<!doctype html>
2<!-- The DOCTYPE declaration above will set the    -->
3<!-- browser's rendering engine into               -->
4<!-- "Standards Mode". Replacing this declaration  -->
5<!-- with a "Quirks Mode" doctype may lead to some -->
6<!-- differences in layout.                        -->
7
8<html>
9  <head>
10    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
11
12    <!--                                                               -->
13    <!-- Consider inlining CSS to reduce the number of requested files -->
14    <!--                                                               -->
15    <link type="text/css" rel="stylesheet" href="GWT_JSNI_example.css">
16
17    <!--                                           -->
18    <!-- Any title is fine                         -->
19    <!--                                           -->
20    <title>GWT/JSNI with tmjs</title>
21   
22   
23    <!--                                           -->
24    <!-- This script loads your compiled module.   -->
25    <!-- If you add any GWT meta tags, they must   -->
26    <!-- be added before this line.                -->
27    <!--                                           -->
28    <script type="text/javascript" language="javascript" src="gwt_jsni_example/gwt_jsni_example.nocache.js"></script>
29  </head>
30
31  <!--                                           -->
32  <!-- The body can have arbitrary html, or      -->
33  <!-- you can leave the body empty if you want  -->
34  <!-- to create a completely dynamic UI.        -->
35  <!--                                           -->
36  <body>
37
38    <!-- OPTIONAL: include this if you want history support -->
39    <iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1' style="position:absolute;width:0;height:0;border:0"></iframe>
40   
41    <!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
42    <noscript>
43      <div style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
44        Your web browser must have JavaScript enabled
45        in order for this application to display correctly.
46      </div>
47    </noscript>
48
49    <h1>GWT/JSNI with tmjs</h1>
50
51        <center>
52                <div id="gwtCode"></div>
53        </center>
54  </body>
55</html>
Note: See TracBrowser for help on using the repository browser.