├── .gitignore ├── LICENSE ├── README.md ├── angular-queue.js ├── bower.json ├── package.json └── test ├── .jshintrc ├── QueueSpec.js ├── karma.conf.js └── vendor ├── angular-mocks.js └── angular.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/README.md -------------------------------------------------------------------------------- /angular-queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/angular-queue.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/package.json -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/QueueSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/test/QueueSpec.js -------------------------------------------------------------------------------- /test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/test/karma.conf.js -------------------------------------------------------------------------------- /test/vendor/angular-mocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/test/vendor/angular-mocks.js -------------------------------------------------------------------------------- /test/vendor/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jseppi/angular-queue/HEAD/test/vendor/angular.min.js --------------------------------------------------------------------------------