]> code.citadel.org Git - citadel.git/blobdiff - webcit/static/roomchat_unload.html
Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
[citadel.git] / webcit / static / roomchat_unload.html
index 85988db1eb53cd652f64f08b1c9582834427d2e3..aa613c4cda851e9fba7e098a1e9d04a4eede16bc 100644 (file)
@@ -1,17 +1,20 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+  "http://www.w3.org/TR/html4/loose.dtd">
 <html>
-<head>
-<script type="text/javascript" src="prototype.js"></script>
-<script type="text/javascript">
-function do_roomchat_unload() {
-        new Ajax.Request(
-                '../chat_exit', {
-                        method: 'get'
-                }
-        );
-}
-</script>
-</head>
-<body onUnload="do_roomchat_unload();">
-ugly hack to enable an onUnload event
-</body>
+  <head>
+    <title>End Chat</title>
+      <script type="text/javascript" src="prototype.js"></script>
+      <script type="text/javascript">
+        function do_roomchat_unload() {
+          new Ajax.Request(
+            '../chat_exit', {
+              method: 'get'
+            }
+          );
+        }
+      </script>
+  </head>
+  <body onUnload="do_roomchat_unload();">
+   ugly hack to enable an onUnload event
+  </body>
 </html>