org.symbian.tools.wrttools.previewer/http-content/wrtdebugger/debugger.htm
author Eugene Ostroukhov <eugeneo@symbian.org>
Wed, 14 Apr 2010 14:54:13 -0700
changeset 305 be8783adb3a8
parent 41 org.symbian.tools.wrttools.previewer/http-content/wrtdebugger/debugger.jsp@fc4a1d68260a
permissions -rw-r--r--
Removed white "Establishing debug connection" page.

<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>