1.0.0 • Published 9 years ago

angular-mixpanel.js v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

angular-mixpanel.js

An Angular.js adapter for Mixpanel with a development mode

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');
    });
  };

});