浏览代码

Fix google analytics trying to send events

Gaël Métais 7 年之前
父节点
当前提交
61bd31e421
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3 1
      front/src/js/app.js

+ 3 - 1
front/src/js/app.js

@@ -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)