From 8468d82433cd04952e1fdc0ce68363a2cf618b13 Mon Sep 17 00:00:00 2001 From: Martin Jurča Date: Sun, 18 Feb 2018 21:30:17 +0100 Subject: fixed showing speaker's view with timings/pacing while serving the presentation from the file system --- plugin/notes/notes.js | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to 'plugin/notes/notes.js') diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index 3f00eb6..dd7df8e 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -21,8 +21,6 @@ var RevealNotes = (function() { var notesPopup = window.open( notesFilePath, 'reveal.js - Notes', 'width=1100,height=700' ); - // Allow popup window access to Reveal API - notesPopup.Reveal = this.Reveal; /** * Connect to the notes window through a postmessage handshake. @@ -47,9 +45,22 @@ var RevealNotes = (function() { clearInterval( connectInterval ); onConnected(); } + if( data && data.namespace === 'reveal-notes' && data.type === 'call' ) { + callRevealApi( data.methodName, data.arguments, data.callId ); + } } ); } + function callRevealApi( methodName, methodArguments, callId ) { + var result = Reveal[methodName].call(Reveal, methodArguments); + notesPopup.postMessage( JSON.stringify( { + namespace: 'reveal-notes', + type: 'return', + result: result, + callId: callId + } ), '*' ); + } + /** * Posts the current slide data to the notes window */ -- cgit v1.2.3 From 6a2c5b4de833c73f656945253e7b72e31870c88a Mon Sep 17 00:00:00 2001 From: Martin Jurča Date: Tue, 20 Feb 2018 10:30:56 +0100 Subject: documentation --- js/reveal.js | 3 +++ plugin/notes/notes.html | 3 +++ plugin/notes/notes.js | 4 ++++ 3 files changed, 10 insertions(+) (limited to 'plugin/notes/notes.js') diff --git a/js/reveal.js b/js/reveal.js index 091372e..9a1422f 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -3901,6 +3901,9 @@ } + /** + * Returns an array of objects where each object represents the attributes on its respective slide. + */ function getSlidesMetaInfo() { var slides = getSlides(); diff --git a/plugin/notes/notes.html b/plugin/notes/notes.html index eff1275..a6bd5e2 100644 --- a/plugin/notes/notes.html +++ b/plugin/notes/notes.html @@ -378,6 +378,9 @@ } ); + /** + * Asynchronously calls the Reveal.js API of the main frame. + */ function callRevealApi( methodName, methodArguments, callback ) { var callId = ++lastRevealApiCallId; pendingCalls[callId] = callback; diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index dd7df8e..dce9b4e 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -51,6 +51,10 @@ var RevealNotes = (function() { } ); } + /** + * Calls the specified Reveal.js method with the provided argument and then pushes the result to the notes + * frame. + */ function callRevealApi( methodName, methodArguments, callId ) { var result = Reveal[methodName].call(Reveal, methodArguments); notesPopup.postMessage( JSON.stringify( { -- cgit v1.2.3