From d5cf3fa13c899014008314d41292880fa8b699bd Mon Sep 17 00:00:00 2001 From: Hakim El Hattab Date: Thu, 4 Oct 2018 13:26:16 +0200 Subject: formatting and tweaks for #2104 --- plugin/notes/notes.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'plugin/notes/notes.js') diff --git a/plugin/notes/notes.js b/plugin/notes/notes.js index 552a6fe..fdefd75 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -56,17 +56,19 @@ var RevealNotes = (function() { } /** - * Calls the specified Reveal.js method with the provided argument and then pushes the result to the notes - * frame. + * 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); + + var result = Reveal[methodName].call( Reveal, methodArguments ); notesPopup.postMessage( JSON.stringify( { namespace: 'reveal-notes', type: 'return', result: result, callId: callId } ), '*' ); + } /** -- cgit v1.2.3