Difference between revisions of "MediaWiki:LastPage.js"
From Tycoon Gaming
BelgianCat (talk | contribs) m (fuckfuck) |
BelgianCat (talk | contribs) m (🙏) |
||
Line 5: | Line 5: | ||
window.element = document.getElementById("globalWrapper"); | window.element = document.getElementById("globalWrapper"); | ||
var save = window.element.innerHTML; | var save = window.element.innerHTML; | ||
− | + | output = '<button class="LastPage" style="position:absolute; bottom:0; left:0; z-index: 10;" onclick="var oldURL = document.referrer; window.location.href = oldURL;"><b>Return to Last Page</b></button>' | |
− | output = '<button class="LastPage" style="position:absolute; bottom:0; left:0;" onclick="var oldURL = document.referrer; window.location.href = oldURL;"><b>Return to Last Page</b></button>' | ||
window.element.innerHTML = save + output; | window.element.innerHTML = save + output; | ||
} | } | ||
} | } | ||
iniFrame(); | iniFrame(); |
Revision as of 21:06, 24 April 2023
function iniFrame() { if ( window.location !== window.parent.location ) { var output; window.element = document.getElementById("globalWrapper"); var save = window.element.innerHTML; output = '<button class="LastPage" style="position:absolute; bottom:0; left:0; z-index: 10;" onclick="var oldURL = document.referrer; window.location.href = oldURL;"><b>Return to Last Page</b></button>' window.element.innerHTML = save + output; } } iniFrame();