initial commit
This commit is contained in:
parent
3ce56cd6ff
commit
d4d0bf91b1
40 changed files with 1361 additions and 0 deletions
31
subsystem/subres/portal.js
Normal file
31
subsystem/subres/portal.js
Normal file
|
@ -0,0 +1,31 @@
|
|||
function inject() {
|
||||
let terms = [
|
||||
"SUBSTELSEL",
|
||||
"INKQUTYWANA",
|
||||
"TSAMAISOANE",
|
||||
"ПОДСИСТЕМА",
|
||||
"النظام الفرعي",
|
||||
"उपतन्त्रम्",
|
||||
"ระบบย่อย",
|
||||
"PUNAHURU",
|
||||
"UNDIRKERFI",
|
||||
"תת מערכת",
|
||||
"ԵՆԹԱՀԱՄԱԿԱՐԳ",
|
||||
"FO-CHÓRAS",
|
||||
"KĀNĀWAI",
|
||||
"SUBSYSTEM",
|
||||
];
|
||||
|
||||
// "サブシステム", "ΥΠΟΣΥΣΤΕΜΑ",
|
||||
|
||||
document.getElementById("subsystem").innerHTML =
|
||||
terms[Math.floor(Math.random() * terms.length)];
|
||||
}
|
||||
|
||||
function disableInject() {
|
||||
clearInterval(injectedPortal);
|
||||
}
|
||||
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
injectedPortal = setInterval(inject, Math.round(Math.random() * 1000));
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue