├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bower.json ├── dist ├── angular-bootstrap-confirm.js ├── angular-bootstrap-confirm.min.js └── angular-bootstrap-confirm.min.js.map ├── index.html ├── karma.conf.js ├── package.json ├── robots.txt ├── src ├── angular-bootstrap-confirm.html ├── angular-bootstrap-confirm.js └── ui-bootstrap-position.js ├── test ├── .eslintrc └── angular-bootstrap-confirm.spec.js ├── webpack.config.build.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | src/ui-bootstrap-position.js 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/bower.json -------------------------------------------------------------------------------- /dist/angular-bootstrap-confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/dist/angular-bootstrap-confirm.js -------------------------------------------------------------------------------- /dist/angular-bootstrap-confirm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/dist/angular-bootstrap-confirm.min.js -------------------------------------------------------------------------------- /dist/angular-bootstrap-confirm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/dist/angular-bootstrap-confirm.min.js.map -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/package.json -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /src/angular-bootstrap-confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/src/angular-bootstrap-confirm.html -------------------------------------------------------------------------------- /src/angular-bootstrap-confirm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/src/angular-bootstrap-confirm.js -------------------------------------------------------------------------------- /src/ui-bootstrap-position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/src/ui-bootstrap-position.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/angular-bootstrap-confirm.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/test/angular-bootstrap-confirm.spec.js -------------------------------------------------------------------------------- /webpack.config.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/webpack.config.build.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattlewis92/angular-bootstrap-confirm/HEAD/webpack.config.js --------------------------------------------------------------------------------