1
0
Fork 0
mirror of https://github.com/kkapsner/CanvasBlocker synced 2025-07-04 04:26:35 +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());}); 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());}); document.querySelector("#iframe button").addEventListener("click", function(){show(document.getElementById("iframe"), iframeTest());});
}()); }());