Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wbamberg
Created June 13, 2011 19:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wbamberg/1023487 to your computer and use it in GitHub Desktop.
Save wbamberg/1023487 to your computer and use it in GitHub Desktop.
this.addEventListener('click', function(event) {
if(event.button == 0 && event.shiftKey == false)
self.port.emit('left-click');
if(event.button == 2 || (event.button == 0 && event.shiftKey == true))
self.port.emit('right-click');
event.preventDefault();
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment