org.symbian.tools.wrttools.previewer/http-content/wrtdebugger/debugger.htm
author Eugene Ostroukhov <eugeneo@symbian.org>
Wed, 09 Jun 2010 14:44:32 -0700
changeset 366 715f288b552a
parent 305 be8783adb3a8
permissions -rw-r--r--
Bug 2779 - Better naming for Application templates

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