Difference between revisions of "MediaWiki:LastPage.js"
From Tycoon Gaming
BelgianCat (talk | contribs) m (🙏) |
BelgianCat (talk | contribs) m (wait this should be 'fixed'? no? oh god mama mia) |
||
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: | + | output = '<button class="LastPage" style="position:fixed; 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; | window.element.innerHTML = save + output; | ||
} | } | ||
} | } | ||
iniFrame(); | iniFrame(); |
Revision as of 21:09, 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:fixed; 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();