File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Version 0.2.2
2+ Released 2018-02-02
3+
4+ - Removed glamorous support because it causes duplicate glamor instances
5+
16# Version 0.2.1
27Released 2018-02-02
38
Original file line number Diff line number Diff line change 11{
22 "name" : " react-simple-video-player" ,
3- "version" : " 0.2.1 " ,
3+ "version" : " 0.2.2 " ,
44 "description" : " A simple, material design video player component for React" ,
55 "repository" : {
66 "type" : " git" ,
Original file line number Diff line number Diff line change @@ -49,9 +49,7 @@ export default class VideoPlayer extends PureComponent {
4949 height : PropTypes . number ,
5050 autosize : PropTypes . bool ,
5151 autoplay : PropTypes . bool ,
52- aspectRatio : PropTypes . string ,
53- className : PropTypes . string ,
54- css : PropTypes . object
52+ aspectRatio : PropTypes . string
5553 } ;
5654
5755 static defaultProps = {
@@ -90,12 +88,10 @@ export default class VideoPlayer extends PureComponent {
9088
9189 render = ( ) => {
9290 const playing = this . state . playing ;
93- const { autosize, className , css } = this . props ;
91+ const autosize = this . props . autosize ;
9492 return (
9593 < Player
9694 autosize = { autosize }
97- className = { className }
98- css = { css }
9995 onMouseOver = { this . onMouseOver }
10096 onMouseLeave = { this . onMouseLeave }
10197 >
You can’t perform that action at this time.
0 commit comments