make sure remotes works without notes plugin being loaded #607

This commit is contained in:
Hakim El Hattab 2013-09-14 11:11:48 -04:00
parent 041a525a3c
commit a3f10e0b0f
1 changed files with 3 additions and 3 deletions

View File

@ -17,11 +17,11 @@
* 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);
var isNotesAndIframe = (function(){
return window.RevealNotes && !(self == top);
})();
if(!hasTouch && !remotesAndIsNotes){
if(!hasTouch && !isNotesAndIframe){
head.ready( 'remotes.ne.min.js', function() {
new Remotes("preview")
.on("swipe-left", function(e){ Reveal.right(); })