Skip to content
An Angular.js adapter for Mixpanel with a development mode
Find file
Fetching latest commit…
Cannot retrieve the latest commit at this time.

README.md

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

});
Something went wrong with that request. Please try again.