wiki/assets/js/rescript.js
Pk11 163e81a3c7 Initial site
TWiLight wiki + NightScript's DS Index in English
and a couple pages in Japanese for testing
2020-12-20 22:18:48 -06:00

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");
});