├── .gitignore ├── .jshintrc ├── Gruntfile.js ├── LICENSE ├── README.md ├── bower.json ├── dist └── angular-wait.js ├── grunt ├── jshint.js ├── karma.js ├── ngAnnotate.js └── uglify.js ├── karma.conf.js ├── package.json ├── src └── angular-wait.js └── test ├── angular-wait.js └── mocks └── example-directive.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/dist/angular-wait.js -------------------------------------------------------------------------------- /grunt/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/grunt/jshint.js -------------------------------------------------------------------------------- /grunt/karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/grunt/karma.js -------------------------------------------------------------------------------- /grunt/ngAnnotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/grunt/ngAnnotate.js -------------------------------------------------------------------------------- /grunt/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/grunt/uglify.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/package.json -------------------------------------------------------------------------------- /src/angular-wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/src/angular-wait.js -------------------------------------------------------------------------------- /test/angular-wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/test/angular-wait.js -------------------------------------------------------------------------------- /test/mocks/example-directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michikono/angular-wait/HEAD/test/mocks/example-directive.js --------------------------------------------------------------------------------