notes plugin: callRevealApi wants apply, not call

This commit is contained in:
Dougal J. Sutherland
2019-03-11 22:25:19 -04:00
committed by GitHub
parent da53b3a637
commit 00e30a11e2

View File

@ -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',