Skip to content

Instantly share code, notes, and snippets.

@timemachine3030
Created August 26, 2013 20:27
Show Gist options
  • Save timemachine3030/6346245 to your computer and use it in GitHub Desktop.
Save timemachine3030/6346245 to your computer and use it in GitHub Desktop.
Angular Analytics Service
var analytics = angular.module('analytics', ['ng']);
analytics.service('analytics', ['$rootScope', '$window', '$location', function ($rootScope, $window) {
$rootScope.$on('$viewContentLoaded', function () {
//$window.ga.push(['_trackPageView', $location.path()]);
$window.ga('send', 'pageview');
});
}]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment