roomchat should be valid now (but two warnings, i am content if we move from error...
authorthe_mgt <themgt@ueberserver.de>
Tue, 5 Jul 2011 22:36:04 +0000 (00:36 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 21:32:36 +0000 (21:32 +0000)
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>