mirror of
https://github.com/rvtr/wiki.git
synced 2025-06-18 11:05:39 -04:00

TWiLight wiki + NightScript's DS Index in English and a couple pages in Japanese for testing
13 lines
372 B
JavaScript
13 lines
372 B
JavaScript
Array.from(document.getElementsByClassName("back-link")).forEach(r => {
|
|
if(window.history.length > 1)
|
|
r.href = "javascript:window.history.back()";
|
|
});
|
|
|
|
Array.from(document.getElementsByClassName("qr-link")).forEach(r => {
|
|
r.href = "javascript:void(0);";
|
|
});
|
|
|
|
Array.from(document.getElementsByClassName("script-show")).forEach(r => {
|
|
r.classList.remove("d-none");
|
|
});
|