plugins/org.symbian.tools.tmw.previewer/http-content/wrtdebugger/debugger.htm
changeset 485 df4f55e8569e
parent 484 f5df819c1852
child 486 f0031abe2cd6
--- a/plugins/org.symbian.tools.tmw.previewer/http-content/wrtdebugger/debugger.htm	Thu Sep 02 15:18:58 2010 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,26 +0,0 @@
-<html>
-<head>
-	<script type="text/javascript">
-		var req;
-		
-		function connect() {
-			req = new XMLHttpRequest();
-			req.onreadystatechange = testconnection;
-			req.open("GET", "testConnection" + window.location.search, true);
-			req.send(null);
-		}
-		
-		function testconnection() {
-			if (req.readyState == 4) {
-				if (req.status != 200) {
-					window.setTimeout(connect, 200);
-				} else {
-					window.location = '../wrt_preview_main.html';
-				}
-			}
-		}
-	</script>
-</head>
-<body onload="connect()" style="color: silver;">
-
-</body>
\ No newline at end of file