├── .bowerrc ├── .gitignore ├── .jsbeautifyrc ├── .jshintrc ├── .nvmrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── example ├── app.js ├── example-controller.js ├── example-one.html ├── example-two-a.html ├── example-two-b.html ├── example-two.html ├── example.html └── index.html ├── karma.conf.js ├── package.json ├── src ├── angular-ui-view-spinner.css ├── angular-ui-view-spinner.js ├── angular-ui-view-spinner.scss └── angular-ui-view-spinner.spec.js └── todo.txt /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | .idea 4 | bower_components -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/.jsbeautifyrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/.jshintrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 0.10.25 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/bower.json -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/example/app.js -------------------------------------------------------------------------------- /example/example-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rpocklin/angular-ui-view-spinner/HEAD/example/example-controller.js -------------------------------------------------------------------------------- /example/example-one.html: -------------------------------------------------------------------------------- 1 |