I've tried to add some event listeners to a html5 video, like this: ``` <video ui-event="{ 'ended : 'onEnded()', seeked: 'onSeeked()'}"> <source src="myVideoSource.mp4" type="video/mp4"> </video> ``` The `ended` event work fine but both `seeked` or `seeking` doesn't trigger their functions. Do you know if this is a issue and how to fix it?
I've tried to add some event listeners to a html5 video, like this:
The
endedevent work fine but bothseekedorseekingdoesn't trigger their functions.Do you know if this is a issue and how to fix it?