You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Programatically opening the notes window using RevealNotes.open() fails to reference the Reveal object as this is scoped to RevealNotes rather than the global scope. As a result the timer function is unable to work.
Programatically opening the notes window using
RevealNotes.open()
fails to reference theReveal
object asthis
is scoped toRevealNotes
rather than the global scope. As a result the timer function is unable to work.reveal.js/plugin/notes/notes.js
Line 25 in a2e69a4
This does not occur when opening the notes window from the keyboard as
this
is scoped to the global object.I believe this should be
notesPopup.Reveal = window.Reveal
instead.The text was updated successfully, but these errors were encountered: