Race condition.

master
Nick Sergeant 2015-08-16 21:08:11 -04:00
parent 3e20729076
commit db1fa631b3
1 changed files with 10 additions and 8 deletions

View File

@ -37,14 +37,16 @@ jQuery(function($) {
root.app = app;
if (root.location.pathname === '/account/stats/') {
root.ll('tagEvent', 'Viewed stats page');
}
if (root.location.pathname === '/pro/') {
root.ll('tagEvent', 'Viewed Pro page');
}
if (root.location.pathname === '/pro/signup/') {
root.ll('tagEvent', 'Viewed Pro signup page');
if (root.ll) {
if (root.location.pathname === '/account/stats/') {
root.ll('tagEvent', 'Viewed stats page');
}
if (root.location.pathname === '/pro/') {
root.ll('tagEvent', 'Viewed Pro page');
}
if (root.location.pathname === '/pro/signup/') {
root.ll('tagEvent', 'Viewed Pro signup page');
}
}
app.controller('AppController', function($scope) {