source: other-projects/FileTransfer-WebSocketPair/GXTWebsocketClient/war/TestElementalSockets.html@ 31449

Last change on this file since 31449 was 31449, checked in by davidb, 7 years ago

Adding three project folders for Nathan Kelly's 2016/2017 summer project, experimenting with Websockets for File Transfer with GWT and Sencha GXT

File size: 1.9 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 is not supported. -->
6
7<html>
8 <head>
9 <meta http-equiv="content-type" content="text/html; charset=UTF-8">
10
11 <!-- -->
12 <!-- Consider inlining CSS to reduce the number of requested files -->
13 <!-- -->
14 <link type="text/css" rel="stylesheet" href="TestElementalSockets.css">
15
16 <!-- -->
17 <!-- Any title is fine -->
18 <!-- -->
19 <title>Web Application Starter Project</title>
20
21 <!-- -->
22 <!-- This script loads your compiled module. -->
23 <!-- If you add any GWT meta tags, they must -->
24 <!-- be added before this line. -->
25 <!-- -->
26 <script type="text/javascript" language="javascript" src="testelementalsockets/testelementalsockets.nocache.js"></script>
27 </head>
28
29 <!-- -->
30 <!-- The body can have arbitrary html, or -->
31 <!-- you can leave the body empty if you want -->
32 <!-- to create a completely dynamic UI. -->
33 <!-- -->
34 <body>
35
36 <!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
37 <noscript>
38 <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">
39 Your web browser must have JavaScript enabled
40 in order for this application to display correctly.
41 </div>
42 </noscript>
43 </body>
44</html>
Note: See TracBrowser for help on using the repository browser.