Skip to content

Instantly share code, notes, and snippets.

@cfjedimaster
Created October 20, 2012 20:39
Show Gist options
  • Save cfjedimaster/3924728 to your computer and use it in GitHub Desktop.
Save cfjedimaster/3924728 to your computer and use it in GitHub Desktop.
window.addEventListener("mousedown", handleClick, false);
window.addEventListener("contextmenu", function(e) { e.preventDefault(); }, false);
function handleClick(e) {
e.preventDefault();
if(e.button === 0) Reveal.next();
if(e.button === 2) Reveal.prev();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment