Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxcoto/angular-intercom-mini

A super simple Angular.js wrapper for Intercom.io
https://github.com/maxcoto/angular-intercom-mini

Last synced: about 2 months ago
JSON representation

A super simple Angular.js wrapper for Intercom.io

Awesome Lists containing this project

README

        

# angular-intercom-mini
Bower Component for installing and using Intercom with AngularJS.

## Install

1. `bower install angular-intercom-mini`
2. Include the `intercom.js` script provided by this component into your app.
3. Add `angular-intercom-mini` as a module dependency to your app.

## Usage

````html

angular
.module('YOUR-APP', ['intercom', '... others ...'])
.config(['IntercomProvider', function(IntercomProvider) {
IntercomProvider.init('YOUR-APP-ID');
}])
.directive('intercom', ['Intercom', function(Intercom) {
// Create a directive to watch user object
// And invoke Intercom.boot when it changes
// There is a example of a directive in example.html file
}])
;

````
Check the example.html file - usage is very easy

## License
MIT