├── .gitignore ├── LICENSE ├── README.md ├── docs ├── .nojekyll ├── README.md ├── big-buck-bunny.mp4 ├── big-buck-bunny.png ├── glomex-logo.png ├── index.html ├── linear-ad-1s.xml ├── linear-ad-2s.xml ├── linear-ad.xml ├── linear-video-1s.mp4 ├── linear-video-2s.mp4 ├── linear-video.mp4 ├── nonlinear-320x50.png ├── nonlinear-480x70.png ├── nonlinear-728x90.png └── nonlinear-ad.xml ├── karma.conf.js ├── package.json ├── src ├── custom-playhead.ts ├── delegated-event-target.ts ├── index.ts └── vast-ima-player.ts ├── test-page ├── bulma-slider.min.css ├── bulma-slider.min.js ├── bulma.min.css ├── index.html ├── rollup.config.js └── test-page.js ├── test └── end-to-end-test.js └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/big-buck-bunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/big-buck-bunny.mp4 -------------------------------------------------------------------------------- /docs/big-buck-bunny.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/big-buck-bunny.png -------------------------------------------------------------------------------- /docs/glomex-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/glomex-logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/linear-ad-1s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/linear-ad-1s.xml -------------------------------------------------------------------------------- /docs/linear-ad-2s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/linear-ad-2s.xml -------------------------------------------------------------------------------- /docs/linear-ad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/linear-ad.xml -------------------------------------------------------------------------------- /docs/linear-video-1s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/linear-video-1s.mp4 -------------------------------------------------------------------------------- /docs/linear-video-2s.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/linear-video-2s.mp4 -------------------------------------------------------------------------------- /docs/linear-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/linear-video.mp4 -------------------------------------------------------------------------------- /docs/nonlinear-320x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/nonlinear-320x50.png -------------------------------------------------------------------------------- /docs/nonlinear-480x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/nonlinear-480x70.png -------------------------------------------------------------------------------- /docs/nonlinear-728x90.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/nonlinear-728x90.png -------------------------------------------------------------------------------- /docs/nonlinear-ad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/docs/nonlinear-ad.xml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/package.json -------------------------------------------------------------------------------- /src/custom-playhead.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/src/custom-playhead.ts -------------------------------------------------------------------------------- /src/delegated-event-target.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/src/delegated-event-target.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/vast-ima-player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/src/vast-ima-player.ts -------------------------------------------------------------------------------- /test-page/bulma-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test-page/bulma-slider.min.css -------------------------------------------------------------------------------- /test-page/bulma-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test-page/bulma-slider.min.js -------------------------------------------------------------------------------- /test-page/bulma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test-page/bulma.min.css -------------------------------------------------------------------------------- /test-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test-page/index.html -------------------------------------------------------------------------------- /test-page/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test-page/rollup.config.js -------------------------------------------------------------------------------- /test-page/test-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test-page/test-page.js -------------------------------------------------------------------------------- /test/end-to-end-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/test/end-to-end-test.js -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glomex/vast-ima-player/HEAD/tslint.json --------------------------------------------------------------------------------