angular-intercom-mini
Bower Component for installing and using Intercom with AngularJS.
Install
bower install angular-intercom-mini
- Include the
intercom.js
script provided by this component into your app. - Add
angular-intercom-mini
as a module dependency to your app.
Usage
<script src="app/bower_components/angular-intercom-mini/intercom.js"></script>
<script>
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
}])
;
</script>
Check the example.html file - usage is very easy
License
MIT