We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 330ddb0 commit dfd01a9Copy full SHA for dfd01a9
README.md
@@ -53,7 +53,11 @@ Use normal HTML5 `<video>` markup with all the standard [html attributes](https:
53
import Video from 'react-html5video';
54
render() {
55
return (
56
- <Video controls autoPlay loop muted poster="http://sourceposter.jpg" onCanPlayThrough={() => { // Do stuff }}>
+ <Video controls autoPlay loop muted
57
+ poster="http://sourceposter.jpg"
58
+ onCanPlayThrough={() => {
59
+ // Do stuff
60
+ }}>
61
<source src="http://sourcefile.webm" type="video/webm" />
62
</Video>
63
);
0 commit comments