Angular On Video Load Event
I'm still trying to understand angular... Basically, I have an html5 video and I want to listen to the onloadeddata event (http://www.w3schools.com/jsref/event_onloadeddata.asp). T
Solution 1:
Figured it out! Looks like I need to use:
$element[0].addEventListener(...)
Instead of:
$element.addEventListener(...)
Post a Comment for "Angular On Video Load Event"