diff options
author | FND | 2015-04-02 07:06:03 +0200 |
---|---|---|
committer | FND | 2015-04-02 07:06:03 +0200 |
commit | 4052389c58358e8d2ee6004a78c3179266cf0773 (patch) | |
tree | b321a1777d686275518bfe086f77dcb961697e65 /plugin | |
parent | 8858ee75a5b5a74c4ed102555c7baaa0f5d29ecd (diff) |
support query parameters within notes plugin
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/notes/notes.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 ); |