diff options
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 4dc88ca..874e66d 100644 --- a/plugin/notes/notes.js +++ b/plugin/notes/notes.js @@ -68,7 +68,7 @@ var RevealNotes = (function() { */ function callRevealApi( methodName, methodArguments, callId ) { - var result = Reveal[methodName].call( Reveal, methodArguments ); + var result = Reveal[methodName].apply( Reveal, methodArguments ); notesPopup.postMessage( JSON.stringify( { namespace: 'reveal-notes', type: 'return', |