├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo ├── images │ ├── bear.jpg │ ├── mountains.jpg │ ├── pink-flowers.jpg │ └── vespa.jpg ├── index.html ├── scripts │ └── demo.coffee └── styles │ ├── reset.scss │ └── style.scss ├── dist ├── angular-adaptive-backgrounds.js └── angular-adaptive-backgrounds.min.js ├── gulpfile.js ├── package.json └── src └── angular-adaptive-backgrounds.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/bower.json -------------------------------------------------------------------------------- /demo/images/bear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/images/bear.jpg -------------------------------------------------------------------------------- /demo/images/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/images/mountains.jpg -------------------------------------------------------------------------------- /demo/images/pink-flowers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/images/pink-flowers.jpg -------------------------------------------------------------------------------- /demo/images/vespa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/images/vespa.jpg -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/scripts/demo.coffee: -------------------------------------------------------------------------------- 1 | angular.module 'demo', ['mb-adaptive-backgrounds'] 2 | -------------------------------------------------------------------------------- /demo/styles/reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/styles/reset.scss -------------------------------------------------------------------------------- /demo/styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/demo/styles/style.scss -------------------------------------------------------------------------------- /dist/angular-adaptive-backgrounds.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/dist/angular-adaptive-backgrounds.js -------------------------------------------------------------------------------- /dist/angular-adaptive-backgrounds.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/dist/angular-adaptive-backgrounds.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-adaptive-backgrounds.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brandly/angular-adaptive-backgrounds/HEAD/src/angular-adaptive-backgrounds.coffee --------------------------------------------------------------------------------