-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path15.js
More file actions
21 lines (21 loc) · 673 Bytes
/
15.js
File metadata and controls
21 lines (21 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*document.addEventListener("contextmenu", function (e) {
e.preventDefault();
});*/
function switchLight(num) {
var sound = document.getElementById("click");
sound.play();
output.innerText = output.innerText + num;
}
function check() {
var x = output.innerText;
if (x === "69420") {
// ye boi
window.location.href = "c74d97b01eae257e44aa9d5bade97baf";
} else {
output.innerText = output.innerText.substring(output.innerText.length);
}
}
function erase() {
var length = output.innerText.length;
output.innerText = output.innerText.substring(0, length - 1);
}