From 4052389c58358e8d2ee6004a78c3179266cf0773 Mon Sep 17 00:00:00 2001 From: FND Date: Thu, 2 Apr 2015 07:06:03 +0200 Subject: [PATCH] support query parameters within notes plugin --- plugin/notes/notes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index 27199af..e42329d 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -28,7 +28,7 @@ var RevealNotes = (function() { notesPopup.postMessage( JSON.stringify( { namespace: 'reveal-notes', type: 'connect', - url: window.location.protocol + '//' + window.location.host + window.location.pathname, + url: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search, state: Reveal.getState() } ), '*' ); }, 500 );