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

https://github.com/patrickjs/angular-mixpanel.js

An Angular.js adapter for Mixpanel with a development mode
https://github.com/patrickjs/angular-mixpanel.js

Last synced: 19 days ago
JSON representation

An Angular.js adapter for Mixpanel with a development mode

Awesome Lists containing this project

README

          

angular-mixpanel.js
===================

An Angular.js adapter for Mixpanel with a development mode

```javascript
angular.module('app', [])
.config(function($mixpanelProvider) {
$mixpanelProvider.token = 'rtyrtfhjjk';
})
.controller('AppController', function($scope, $mixpanel, Auth) {

$scope.login = function(user) {
Auth.login(user).then(function() {
$mixpanel.track('LOGIN');
});
};

});
```