├── ISSUES ├── README.md ├── feat.md └── fix.md ├── README.md ├── package.json ├── src ├── components │ ├── app │ │ ├── index.js │ │ └── index.styl │ ├── controls │ │ ├── index.js │ │ └── index.styl │ ├── input │ │ ├── index.js │ │ └── index.styl │ ├── playlist │ │ ├── index.js │ │ └── index.styl │ ├── settings │ │ ├── index.js │ │ └── index.styl │ ├── video │ │ ├── index.js │ │ └── index.styl │ └── videos │ │ ├── index.js │ │ └── index.styl ├── db │ ├── index.js │ ├── store │ │ ├── index.js │ │ └── settings │ │ │ ├── index.js │ │ │ └── play-mode.js │ └── utils.js ├── html.js ├── index.js ├── modules │ └── key-controls │ │ ├── index.js │ │ ├── keyboard │ │ ├── index.js │ │ ├── onkeydown.js │ │ └── utils.js │ │ ├── mouse.js │ │ └── wheel.js └── utils │ └── index.js └── webpack.config.js /ISSUES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/ISSUES/README.md -------------------------------------------------------------------------------- /ISSUES/feat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/ISSUES/feat.md -------------------------------------------------------------------------------- /ISSUES/fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/ISSUES/fix.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/package.json -------------------------------------------------------------------------------- /src/components/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/app/index.js -------------------------------------------------------------------------------- /src/components/app/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/app/index.styl -------------------------------------------------------------------------------- /src/components/controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/controls/index.js -------------------------------------------------------------------------------- /src/components/controls/index.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/input/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/input/index.js -------------------------------------------------------------------------------- /src/components/input/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/input/index.styl -------------------------------------------------------------------------------- /src/components/playlist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/playlist/index.js -------------------------------------------------------------------------------- /src/components/playlist/index.styl: -------------------------------------------------------------------------------- 1 | 2 | .playing 3 | color yellow 4 | background: blue 5 | -------------------------------------------------------------------------------- /src/components/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/settings/index.js -------------------------------------------------------------------------------- /src/components/settings/index.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/video/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/video/index.js -------------------------------------------------------------------------------- /src/components/video/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/video/index.styl -------------------------------------------------------------------------------- /src/components/videos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/videos/index.js -------------------------------------------------------------------------------- /src/components/videos/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/components/videos/index.styl -------------------------------------------------------------------------------- /src/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/db/index.js -------------------------------------------------------------------------------- /src/db/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/db/store/index.js -------------------------------------------------------------------------------- /src/db/store/settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/db/store/settings/index.js -------------------------------------------------------------------------------- /src/db/store/settings/play-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/db/store/settings/play-mode.js -------------------------------------------------------------------------------- /src/db/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/db/utils.js -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/html.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/index.js -------------------------------------------------------------------------------- /src/modules/key-controls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/modules/key-controls/index.js -------------------------------------------------------------------------------- /src/modules/key-controls/keyboard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/modules/key-controls/keyboard/index.js -------------------------------------------------------------------------------- /src/modules/key-controls/keyboard/onkeydown.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/modules/key-controls/keyboard/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/modules/key-controls/keyboard/utils.js -------------------------------------------------------------------------------- /src/modules/key-controls/mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/modules/key-controls/mouse.js -------------------------------------------------------------------------------- /src/modules/key-controls/wheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/modules/key-controls/wheel.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laggingreflex/multi-video-player/HEAD/webpack.config.js --------------------------------------------------------------------------------