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
Create an Interactive Video (v 1.26) with a vimeo video
Set Disable Navigation = Forward in Behavioral Settings
Add some interactions to the video
Open the content and watch the video to the end, completing the interactions in the process
Before clicking 'submit' on the final screen, refresh the page
Observe all the interactions are at the beginning of the video, despite being configured to be in the middle
Correct interaction placement:
Incorrect interaction replacement after completing the video and refreshing:
Error from vimeo.js:
The problem is startAt will be set past the duration of the video when the page is refreshed. Vimeos player will not allow the video player to seek to the end or past the end of the video. This means the video is not loaded properly, so the duration cannot be used to calculate the left offset of the interactions in the seekbar.
Adding this to the eventlistener initialization resolves the problem:
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Correct interaction placement:
Incorrect interaction replacement after completing the video and refreshing:
Error from vimeo.js:
The problem is startAt will be set past the duration of the video when the page is refreshed. Vimeos player will not allow the video player to seek to the end or past the end of the video. This means the video is not loaded properly, so the duration cannot be used to calculate the left offset of the interactions in the seekbar.
Adding this to the eventlistener initialization resolves the problem:
The text was updated successfully, but these errors were encountered: