-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
make autoplay configurable, add archive folder #10
base: master
Are you sure you want to change the base?
Conversation
js/src/main.js
Outdated
FW.log('this.contentPlayer.readyState - ' + this.contentPlayer.readyState); | ||
} | ||
|
||
if (this.vastPlayer.readyState > 3 || this.contentPlayer.readyState > 3) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can either player be undefined?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@solitaa what about this one?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I tested few scenarios, like when vast is broken or video is unavailable, rmp works fine and no issue with players, but I agree that it will be more accurate to add checks.
js/src/main.js
Outdated
FW.log('this.contentPlayer.readyState - ' + this.contentPlayer.readyState); | ||
} | ||
|
||
if (this.vastPlayer.readyState > 3 || this.contentPlayer.readyState > 3) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@solitaa what about this one?
js/src/module.js
Outdated
FW.log('this.contentPlayer.readyState - ' + this.contentPlayer.readyState); | ||
} | ||
|
||
if (this.vastPlayer.readyState > 3 || this.contentPlayer.readyState > 3) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
No description provided.