├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── angular-video-bg-spec.js ├── angular-video-bg.js ├── angular-video-bg.min.js ├── bower.json ├── index.html ├── package.json └── screenshot.png /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/.npmignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/README.md -------------------------------------------------------------------------------- /angular-video-bg-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/angular-video-bg-spec.js -------------------------------------------------------------------------------- /angular-video-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/angular-video-bg.js -------------------------------------------------------------------------------- /angular-video-bg.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/angular-video-bg.min.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kanzelm3/angular-video-bg/HEAD/screenshot.png --------------------------------------------------------------------------------