Skip to content

Commit

Permalink
fix(FEC-9080): when seeking back from end screen no play button displ…
Browse files Browse the repository at this point in the history
…ayed (#8)

Firing `SEEKED` while ad break, as this event exits the player from ended state (see [here](https://github.com/kaltura/playkit-js-ui/blob/9820c3514f9537d3971217a3e68c35480a3b4fb1/src/components/engine-connector/engine-connector.js#L144))
(No risk because the scrubber is hidden in ad UI)
  • Loading branch information
yairans authored May 7, 2019
1 parent eeb6b07 commit 6f4bccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ima-dai-event-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ImaDAIEventManager {
_queue: ImaDAIEventQueue;
_dispatchEventHandler: Function;
_eventManager: EventManager;
_parallelEvents: Array<string> = [Html5EventType.VOLUME_CHANGE];
_parallelEvents: Array<string> = [Html5EventType.VOLUME_CHANGE, Html5EventType.SEEKED];
_stopEventDispatchingMap: {[event: string]: boolean} = {
[Html5EventType.ENDED]: false
};
Expand Down

0 comments on commit 6f4bccc

Please sign in to comment.