├── .gitignore ├── LICENSE.md ├── README.md ├── dist ├── css │ ├── animation.css │ ├── fontello-codes.css │ ├── fontello-embedded.css │ ├── fontello-ie7-codes.css │ ├── fontello-ie7.css │ ├── fontello.css │ └── video.css └── jsx │ └── react-video.js ├── index.html ├── react.js ├── screenshot.png └── src ├── jsx └── react-video.js └── sass ├── animation.scss ├── fontello-codes.scss ├── fontello-embedded.scss ├── fontello-ie7-codes.scss ├── fontello-ie7.scss ├── fontello.scss └── video.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/README.md -------------------------------------------------------------------------------- /dist/css/animation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/animation.css -------------------------------------------------------------------------------- /dist/css/fontello-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/fontello-codes.css -------------------------------------------------------------------------------- /dist/css/fontello-embedded.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/fontello-embedded.css -------------------------------------------------------------------------------- /dist/css/fontello-ie7-codes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/fontello-ie7-codes.css -------------------------------------------------------------------------------- /dist/css/fontello-ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/fontello-ie7.css -------------------------------------------------------------------------------- /dist/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/fontello.css -------------------------------------------------------------------------------- /dist/css/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/css/video.css -------------------------------------------------------------------------------- /dist/jsx/react-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/dist/jsx/react-video.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/index.html -------------------------------------------------------------------------------- /react.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/react.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/jsx/react-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/jsx/react-video.js -------------------------------------------------------------------------------- /src/sass/animation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/animation.scss -------------------------------------------------------------------------------- /src/sass/fontello-codes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/fontello-codes.scss -------------------------------------------------------------------------------- /src/sass/fontello-embedded.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/fontello-embedded.scss -------------------------------------------------------------------------------- /src/sass/fontello-ie7-codes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/fontello-ie7-codes.scss -------------------------------------------------------------------------------- /src/sass/fontello-ie7.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/fontello-ie7.scss -------------------------------------------------------------------------------- /src/sass/fontello.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/fontello.scss -------------------------------------------------------------------------------- /src/sass/video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zackperdue/React-Video-Player/HEAD/src/sass/video.scss --------------------------------------------------------------------------------