├── .gitignore ├── LICENSE.md ├── README.md ├── angular-cache-buster.js ├── bower.json ├── karma.conf.js ├── package.json └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | bower_components/ 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/README.md -------------------------------------------------------------------------------- /angular-cache-buster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/angular-cache-buster.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/bower.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saintmac/angular-cache-buster/HEAD/test/test.js --------------------------------------------------------------------------------