sku-pg
Version:
Skulpt is a Javascript implementation of Python 2.x. Python that runs in your browser!
26 lines (23 loc) • 742 B
HTML
<title>Intentionally left blank</title>
<script type="text/javascript">
// Display the current iframe location for debugging purposes.
function displayLocation() {
var s = location.hash.replace('&', '&')
.replace('<', '<')
.replace('>', '>') || 'null';
document.body.innerHTML = s;
}
if (window != window.top) {
setInterval(displayLocation, 10);
}
</script>
<body>
This is a blank helper page for the goog.History demos. See
<a href="history1.html">demo 1</a> and
<a href="history2.html">demo 2</a>.
</body>
<!--
Copyright 2010 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by an Apache 2.0 License.
See the COPYING file for details.
-->