Browse Source

disable remotes plugin on mobile

embed
callmephilip 12 years ago
parent
commit
b9483f29e1
  1. 19
      plugin/remotes/remotes.js

19
plugin/remotes/remotes.js

@ -3,8 +3,18 @@
* of the folks at http://remotes.io
*/
head.ready( 'remotes.ne.min.js', function() {
(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;
})();
if(!hasTouch){
head.ready( 'remotes.ne.min.js', function() {
new Remotes("preview")
.on("swipe-left", function(e){ Reveal.right(); })
.on("swipe-right", function(e){ Reveal.left(); })
@ -13,7 +23,8 @@ head.ready( 'remotes.ne.min.js', function() {
.on("tap", function(e){
Reveal.toggleOverview();
});
} );
} );
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');
}
})(window);
Loading…
Cancel
Save