]> git.mar77i.info Git - hublib/blob - hubapps/first/master.js
e33e9fecf19a0923feb3d253141c50a74edf3d62
[hublib] / hubapps / first / master.js
1 "use strict";
2
3 (function () {
4 document.addEventListener("readystatechange", function (event) {
5 if (!event) {
6 event = window.event;
7 }
8 if (event.target.readyState !== "complete") {
9 return;
10 }
11 document.body.append(document.createTextNode("(this is master.js) "));
12 // hide real url
13 history.pushState({}, "", new URL(window.location.origin + "/"));
14 });
15 })();