├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _config.yml ├── angular-intercom.js ├── angular-intercom.min.js ├── bower.json ├── example └── index.html └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: 'Angular Intercom' 2 | -------------------------------------------------------------------------------- /angular-intercom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/angular-intercom.js -------------------------------------------------------------------------------- /angular-intercom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/angular-intercom.min.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/bower.json -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/example/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrickJS/angular-intercom/HEAD/package.json --------------------------------------------------------------------------------