mirror of
https://github.com/QuiteAFancyEmerald/Holy-Unblocker.git
synced 2025-05-14 12:20:02 -04:00
8 lines
No EOL
294 B
JavaScript
8 lines
No EOL
294 B
JavaScript
document.onkeydown = (function(e) {
|
|
e.preventDefault();
|
|
if (e.which == 17) cip = true;
|
|
if (e.which == 77 && cip) {
|
|
var c = document.getElementById('page-holder');
|
|
if (c.style.display == 'none') { c.style.display = 'block' } else { c.style.display = 'none' }
|
|
}
|
|
}) |