PetroFrolov / vast-video-js

VAST-Ad plugin for HTML5 by video.js
79 stars 33 forks source link

Don't work in Opera ( #3

Closed PetroFrolov closed 11 years ago

PetroFrolov commented 11 years ago

'canpaly' event is called after 'timeupdate'. If for post-roll set time as -1 to avoid play it as pre-roll in Opera then nothing playing (

PetroFrolov commented 11 years ago

if video tag haven't src atribute (use source) or it's empty, than events not fires well :'( http://dev.opera.com/articles/view/consistent-event-firing-with-html5-video/

PetroFrolov commented 11 years ago

fixed by if (wndow.opera) { this.player.src(this.player.values.src); this.player.load(); }

in init plugin function