diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-10-26 09:22:46 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-10-26 09:22:46 +0100 |
commit | fc792e704c084110f67d0de3095d4d9755c6c22c (patch) | |
tree | 8720e7fea9849ccbd890266be9eca7ae8456b237 /plugin | |
parent | 1cb52120ff0177e3908f384dc55f0b1d92d2a3c7 (diff) | |
download | fosdem-2018-presentation-fc792e704c084110f67d0de3095d4d9755c6c22c.tar fosdem-2018-presentation-fc792e704c084110f67d0de3095d4d9755c6c22c.tar.gz |
remove remotes.io plugin, service no longer exists #1411
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/remotes/remotes.js | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/plugin/remotes/remotes.js b/plugin/remotes/remotes.js deleted file mode 100644 index ba0dbad..0000000 --- a/plugin/remotes/remotes.js +++ /dev/null @@ -1,39 +0,0 @@ -/** - * Touch-based remote controller for your presentation courtesy - * of the folks at http://remotes.io - */ - -(function(window){ - - /** - * Detects if we are dealing with a touch enabled device (with some false positives) - * Borrowed from modernizr: https://github.com/Modernizr/Modernizr/blob/master/feature-detects/touch.js - */ - var hasTouch = (function(){ - return ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch; - })(); - - /** - * Detects if notes are enable and the current page is opened inside an /iframe - * this prevents loading Remotes.io several times - */ - var isNotesAndIframe = (function(){ - return window.RevealNotes && !(self == top); - })(); - - if(!hasTouch && !isNotesAndIframe){ - head.ready( 'remotes.ne.min.js', function() { - new Remotes("preview") - .on("swipe-left", function(e){ Reveal.right(); }) - .on("swipe-right", function(e){ Reveal.left(); }) - .on("swipe-up", function(e){ Reveal.down(); }) - .on("swipe-down", function(e){ Reveal.up(); }) - .on("tap", function(e){ Reveal.next(); }) - .on("zoom-out", function(e){ Reveal.toggleOverview(true); }) - .on("zoom-in", function(e){ Reveal.toggleOverview(false); }) - ; - } ); - - head.js('https://hakim-static.s3.amazonaws.com/reveal-js/remotes.ne.min.js'); - } -})(window);
\ No newline at end of file |