diff options
Diffstat (limited to 'plugin/notes/notes.html')
-rw-r--r-- | plugin/notes/notes.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html index 90083cf..013a18b 100644 --- a/plugin/notes/notes.html +++ b/plugin/notes/notes.html @@ -124,10 +124,10 @@ nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv ); // Showing and hiding fragments - if (data.fragment === 'next') { + if( data.fragment === 'next' ) { currentSlide.contentWindow.Reveal.nextFragment(); } - else if (data.fragment === 'prev') { + else if( data.fragment === 'prev' ) { currentSlide.contentWindow.Reveal.prevFragment(); } |