From 3b073eee65ad0f1b367a54229d0beb2124919d86 Mon Sep 17 00:00:00 2001
From: Hakim El Hattab <hakim.elhattab@gmail.com>
Date: Fri, 16 Nov 2012 09:08:32 -0500
Subject: [PATCH] fix incorrect navigation in notes window (closes #241)

---
 plugin/notes/notes.html | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html
index 8763056..64b921c 100644
--- a/plugin/notes/notes.html
+++ b/plugin/notes/notes.html
@@ -119,10 +119,6 @@
 							}
 						}
 
-						// Update the note slides
-						currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv );
-						nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv );
-
 						// Showing and hiding fragments
 						if( data.fragment === 'next' ) {
 							currentSlide.contentWindow.Reveal.nextFragment();
@@ -130,6 +126,11 @@
 						else if( data.fragment === 'prev' ) {
 							currentSlide.contentWindow.Reveal.prevFragment();
 						}
+						else {
+							// Update the note slides
+							currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv );
+							nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv );
+						}
 
 					}, false );
 
-- 
GitLab