Skip to content

Instantly share code, notes, and snippets.

@ByK95
Forked from cfjedimaster/gist:3924728
Last active May 5, 2019 19:53
Show Gist options
  • Save ByK95/7c29ac50a4147ac37fe07cc878e96f52 to your computer and use it in GitHub Desktop.
Save ByK95/7c29ac50a4147ac37fe07cc878e96f52 to your computer and use it in GitHub Desktop.
Reveal.js events for slide navigation via mouse
window.addEventListener("mousedown", handleClick, false);
window.addEventListener("contextmenu", function(e) { e.preventDefault(); }, false);
//FIXME:disable this when user in ESC view
//TODO:check same for zoom view
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