1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-09 16:17:28 +02:00

remotes plugin more natural bindings: tap — next, zoom-out — activate overview, zoom-in — deactivate overview

This commit is contained in:
Ivan Kuchin
2013-05-04 02:27:55 +02:00
parent 247771e129
commit 352ec7e9ad

View File

@@ -28,9 +28,10 @@
.on("swipe-right", function(e){ Reveal.left(); }) .on("swipe-right", function(e){ Reveal.left(); })
.on("swipe-up", function(e){ Reveal.down(); }) .on("swipe-up", function(e){ Reveal.down(); })
.on("swipe-down", function(e){ Reveal.up(); }) .on("swipe-down", function(e){ Reveal.up(); })
.on("tap", function(e){ .on("tap", function(e){ Reveal.next(); })
Reveal.toggleOverview(); .on("zoom-out", function(e){ Reveal.toggleOverview(true); })
}); .on("zoom-in", function(e){ Reveal.toggleOverview(false); })
;
} ); } );
head.js('https://raw.github.com/Remotes/Remotes/master/dist/remotes.ne.min.js'); head.js('https://raw.github.com/Remotes/Remotes/master/dist/remotes.ne.min.js');