-
Notifications
You must be signed in to change notification settings - Fork 47.4k
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
video component doesnt support media events #2182
Comments
just a note, it seems that most if not all media events dont bubble |
Kind of related #2094 |
Yep - audio and video components are essentially unsupported in react. You will need to grab the DOM node and do everything manually. I haven't been able to get anyone to care about this oversight and it doesn't look like it will be fixed anytime soon |
@contra If you someone cares enough to submit a PR it will surely be accepted. :) The React team is currently more focused on getting React core stable I would say, most DOM fixes are by the community AFAIK. I could look into it some time but I've been busy elsewhere lately. |
No worries, it isn't as big of an issue as I originally thought once I On Thursday, February 26, 2015, Andreas Svensson [email protected]
|
Just came across this thread. Audio & Video components are now supported. |
Yes, these were added in 0.14. |
for what media events there a good place might be http://www.w3schools.com/tags/ref_eventattributes.asp under media events.
In particular events like oncanplay, oncanplaythrough, and ondurationchange.
The text was updated successfully, but these errors were encountered: