Difference between revisions of "MediaWiki:LastPage.js"
From Tycoon Gaming
BelgianCat (talk | contribs) m (wait this should be 'fixed'? no? oh god mama mia) |
BelgianCat (talk | contribs) m (reverting back to Donald's. Just noticed it's based on the css styling in common.css lololol no wonder it wasn't changing) |
||
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 | + | output = '<button class="LastPage" 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:15, 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" onclick="var oldURL = document.referrer; window.location.href = oldURL;"><b>Return to Last Page</b></button>' window.element.innerHTML = save + output; } } iniFrame();