tabunder/tabu.js

21 lines
558 B
JavaScript
Raw Permalink Normal View History

2022-11-02 09:13:50 +00:00
url="<url to tabunder to>";
imgsrc="ffox.svg";
2022-11-03 09:04:35 +00:00
clk=false;
2022-11-02 09:13:50 +00:00
if (window.location.hash == "#1") {
window.opener.location = url;
} else{
2022-11-03 09:04:35 +00:00
document.addEventListener("click", pop);
if(navigator.userAgent.toLowerCase().indexOf('firefox') > -1 && !clk){
2022-11-02 09:13:50 +00:00
image=document.createElement("img");
image.src=imgsrc;
image.width=900;
image.style="margin: 0;position: absolute;top: 50%; left: 50%;-ms-transform: translateY(-50%);transform: translate(-50%, -50%);";
document.body.appendChild(image);
2022-11-03 09:04:35 +00:00
clk=true;
2022-11-02 09:13:50 +00:00
}
function pop() {
window.open("#1");
}
}