├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── player ├── container.html ├── example.mp4 ├── example.png └── page.html └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/README.md -------------------------------------------------------------------------------- /player/container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/player/container.html -------------------------------------------------------------------------------- /player/example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/player/example.mp4 -------------------------------------------------------------------------------- /player/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/player/example.png -------------------------------------------------------------------------------- /player/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/player/page.html -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xdevplatform/cards-player-samples/HEAD/screenshot.png --------------------------------------------------------------------------------