1
0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2024-06-06 21:37:50 +02:00

Created way to load test page with no initial read access.

This commit is contained in:
kkapsner 2017-07-02 02:05:44 +02:00
parent 820f187d35
commit 584f178ff7

View File

@ -34,9 +34,11 @@
});
}
show(document.getElementById("top"), topTest());
if (location.search !== "?notInitial"){
show(document.getElementById("top"), topTest());
show(document.getElementById("iframe"), iframeTest());
}
document.querySelector("#top button").addEventListener("click", function(){show(document.getElementById("top"), topTest());});
show(document.getElementById("iframe"), iframeTest());
document.querySelector("#iframe button").addEventListener("click", function(){show(document.getElementById("iframe"), iframeTest());});
}());