Difference between revisions of "MediaWiki:Middleclick.js"

From Tycoon Gaming
m
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
function start(){
 
function start(){
 +
console.log("Middleclick prevention started");
 
$(document).mousedown(function(e){
 
$(document).mousedown(function(e){
 
if ( window.location !== window.parent.location ) {  
 
if ( window.location !== window.parent.location ) {  
 
if(e.which === 2 ){
 
if(e.which === 2 ){
alert('Middleclick is currently Disabled due to Bugs');
+
console.log("Middleclick prevented");
 
return false; // Or e.preventDefault()
 
return false; // Or e.preventDefault()
 
}
 
}

Latest revision as of 02:02, 21 February 2021

function start(){
console.log("Middleclick prevention started");
	$(document).mousedown(function(e){
		if ( window.location !== window.parent.location ) { 
			if(e.which === 2 ){
				console.log("Middleclick prevented");
				return false; // Or e.preventDefault()
			}
		}
	});
}
start();