James Peret's personal portfolio website version 2. Built with Famous.js and AngularJS.

index.js 456B

1234567891011121314151617
  1. /**
  2. * @ngdoc function
  3. * @name domainManagerApp.controller:AboutCtrl
  4. * @description
  5. * # AboutCtrl
  6. * Controller of the domainManagerApp
  7. */
  8. angular.module('goApp.index', ['famous.angular', 'ngFx', 'ngAnimate'])
  9. .controller('IndexController',['$scope', '$rootScope', '$famous', '$timeline', '$mixpanel', function ($scope, $rootScope, $famous, $timeline, $mixpanel) {
  10. 'use strict';
  11. $mixpanel.track('Page View', { "Page": "index" });
  12. }]);