How can I prevent right mouse click?
22 February 2016 12:52
22 February 2016 12:58
Hi,
When I panning my camera, sometimes I press right mouse button, and it shows me the pop up window.We use this code to disable the browser right-click menu in our web player:
Is there any way to prevent this?
window.oncontextmenu = function(e) {
e.preventDefault();
e.stopPropagation();
return false;
};