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
{{ message }}
This repository has been archived by the owner on Feb 25, 2022. It is now read-only.
Create a talk with $wait10s somewhere in the transcript.
When 10 seconds pause is fired, try pressing forward button or backward button
Expected Behavior
When Forward or Backward is pressed, the timeout should be canceled.
Problem?
when the talk discovers $wait10s it calls a function await wait(10000) which is promisified version of setTimeout (the function is defined in scripts/helpers.js). When it fires it waits for the promise to resolve to continue. Meanwhile, if you press forward it will go forward but after promise is resolved it will go back to the previous slide.
The text was updated successfully, but these errors were encountered:
Steps to reproduce
$wait10s
somewhere in the transcript.Expected Behavior
Problem?
when the talk discovers
$wait10s
it calls a functionawait wait(10000)
which is promisified version ofsetTimeout
(the function is defined inscripts/helpers.js
). When it fires it waits for the promise to resolve to continue. Meanwhile, if you press forward it will go forward but after promise is resolved it will go back to the previous slide.The text was updated successfully, but these errors were encountered: