Difference between revisions of "MediaWiki:Middleclick.js"

From Tycoon Gaming
m
m (Test edit)
Line 3: Line 3:
 
if ( window.location !== window.parent.location ) {  
 
if ( window.location !== window.parent.location ) {  
 
if(e.which === 2 ){
 
if(e.which === 2 ){
 +
console.log("Middleclick prevented")
 
return false; // Or e.preventDefault()
 
return false; // Or e.preventDefault()
 
}
 
}

Revision as of 01:52, 21 February 2021

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