diff options
author | Hakim El Hattab | 2013-04-15 09:01:45 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-04-15 09:01:45 -0400 |
commit | 5181f6e17fbb154a1d8f65664214206a9b48d06b (patch) | |
tree | 22a8fe3c7fab8bf3837182051e3f3563534ca539 | |
parent | 00b197792beba81e27fc571dc806462e0869c77e (diff) | |
parent | 87894e5503a03c600cf9054e228b1d142d48e821 (diff) |
Merge branch 'master' of https://github.com/ainformatico/reveal.js into dev
-rw-r--r-- | plugin/remotes/remotes.js | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/plugin/remotes/remotes.js b/plugin/remotes/remotes.js index a1f10b8..febdf87 100644 --- a/plugin/remotes/remotes.js +++ b/plugin/remotes/remotes.js @@ -13,7 +13,15 @@ return ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch; })(); - if(!hasTouch){ + /** + * Detects if notes are enable and the current page is opened inside an /iframe + * this prevents loading Remotes.io several times + */ + var remotesAndIsNotes = (function(){ + return !(window.RevealNotes && self == top); + })(); + + if(!hasTouch && !remotesAndIsNotes){ head.ready( 'remotes.ne.min.js', function() { new Remotes("preview") .on("swipe-left", function(e){ Reveal.right(); }) |