2010-09-18 16:56:48 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<head>
|
2010-09-18 23:59:41 +00:00
|
|
|
<title>Visual 6502 in JavaScript</title>
|
2010-10-30 18:59:00 +00:00
|
|
|
|
2010-10-30 16:07:48 +00:00
|
|
|
<!-- we now have separate landing pages for kiosk and expert -->
|
|
|
|
<!-- sadly this mechanism won't pass on any URL query parameters -->
|
2010-10-30 18:59:00 +00:00
|
|
|
<!-- so it's here only as a fallback (and is deprecated style) -->
|
|
|
|
<meta http-equiv="REFRESH" content="3;url=kiosk.html">
|
|
|
|
|
|
|
|
<!-- we'll redirect with javascript to the right landing page -->
|
|
|
|
<!-- allowing pan+zoom to land in the kiosk, otherwise expert -->
|
|
|
|
<!-- (as it happens, kiosk doesn't presently support pan+zoom) -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
function handleOnload() {
|
|
|
|
var prefix=location.protocol+"//"+location.host+"/";
|
|
|
|
var suffix=location.search;
|
|
|
|
var queryParts=suffix.slice(1).split('&');
|
|
|
|
for(var i=0;i<queryParts.length;i++){
|
|
|
|
var params=queryParts[i].split("=");
|
|
|
|
var name=params[0];
|
|
|
|
if(!(name=="panx" || name=="pany" || name=="zoom")) {
|
|
|
|
window.location.replace(prefix+"expert.html"+suffix);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
window.location.replace(prefix+"kiosk.html"+suffix);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2010-09-18 16:56:48 +00:00
|
|
|
</head>
|
|
|
|
|
2010-10-30 18:59:00 +00:00
|
|
|
<body onload="handleOnload();">
|
2010-10-30 16:07:48 +00:00
|
|
|
<p style="align:center">
|
2010-10-30 18:59:00 +00:00
|
|
|
Please wait while we redirect you, or <a href="kiosk.html">click here</a>.
|
2010-10-30 16:07:48 +00:00
|
|
|
</p>
|
2010-09-18 16:56:48 +00:00
|
|
|
</body>
|
|
|
|
</html>
|