Fix google analytics trying to send events

This commit is contained in:
Gaël Métais
2018-01-17 11:02:40 -06:00
parent 84425e1319
commit 61bd31e421
+3 -1
View File
@@ -35,7 +35,9 @@ yltApp.run(['$rootScope', '$location', function($rootScope, $location) {
// Google Analytics
$rootScope.$on('$routeChangeSuccess', function(){
ga('send', 'pageview', {'page': $location.path()});
if (ga) {
ga('send', 'pageview', {'page': $location.path()});
}
});
// GitHub star button (asynchronously loaded iframe)