mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-31 08:47:57 +00:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
if (document.addEventListener) {
|
|
document.addEventListener('contextmenu', function (e) {
|
|
e.preventDefault();
|
|
}, false);
|
|
} else {
|
|
document.attachEvent('oncontextmenu', function () {
|
|
window.event.returnValue = false;
|
|
});
|
|
}
|