urlpages/index.html

11 lines
320 B
HTML
Raw Normal View History

<noscript>JavaScript is required to convert the URL into a usable web page.</noscript>
<script type="text/javascript">
if (window.location.hash) {
var hash = window.location.hash.slice(1);
var data = atob(hash);
document.write(decodeURIComponent(data));
} else {
window.location.replace("./editor");
}
</script>