Skip to content

Instantly share code, notes, and snippets.

@adrianoxavier
Last active December 18, 2015 19:49
Show Gist options
  • Save adrianoxavier/5835419 to your computer and use it in GitHub Desktop.
Save adrianoxavier/5835419 to your computer and use it in GitHub Desktop.
angular.module('analytics', [])
.service('analytics', function($rootScope, $window, $location) {
var track = function() {
$window._gaq.push(['_trackPageview', $location.path()]);
};
$rootScope.$on('$viewContentLoaded', track);
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment