diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-10-14 21:02:32 -0400 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2012-10-14 21:02:32 -0400 |
commit | 470cabaea81626b9983923cbe59bc6bbc673a169 (patch) | |
tree | 15ab95b87fdd31e6f39a1ad7220135a13c34bea4 /plugin | |
parent | e15beb47f0ca0e3db22d70b0b6a5d21d02f514ab (diff) | |
download | perl-software-in-gnu-guix-470cabaea81626b9983923cbe59bc6bbc673a169.tar perl-software-in-gnu-guix-470cabaea81626b9983923cbe59bc6bbc673a169.tar.gz |
new shorter api method names (closes #178), restructured and cleaned up core js
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/speakernotes/notes.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugin/speakernotes/notes.html b/plugin/speakernotes/notes.html index 1106233..13f043d 100644 --- a/plugin/speakernotes/notes.html +++ b/plugin/speakernotes/notes.html @@ -119,8 +119,8 @@ notes.innerHTML = data.notes; } - currentSlide.contentWindow.Reveal.navigateTo(data.indexh, data.indexv); - nextSlide.contentWindow.Reveal.navigateTo(data.nextindexh, data.nextindexv); + currentSlide.contentWindow.Reveal.slide(data.indexh, data.indexv); + nextSlide.contentWindow.Reveal.slide(data.nextindexh, data.nextindexv); }); </script> |