From 93099d274ec986a8aff7d50abdfe6160b0955f6c Mon Sep 17 00:00:00 2001 From: Jonathan Olson Date: Thu, 2 Mar 2017 11:17:57 -0700 Subject: [PATCH] Include the brand directly in Yotta messages. See https://github.com/phetsims/phetcommon/issues/37 --- js/analytics/google-analytics.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/analytics/google-analytics.js b/js/analytics/google-analytics.js index dfe493c7..95c0674a 100644 --- a/js/analytics/google-analytics.js +++ b/js/analytics/google-analytics.js @@ -63,8 +63,9 @@ googleAnalyticsLoaded = true; } - var pingParams = 'pingver=2&' + + var pingParams = 'pingver=3&' + 'project=' + encodeURIComponent( phet.chipper.project ) + '&' + + 'brand=' + encodeURIComponent( phet.chipper.brand ) + '&' + 'version=' + encodeURIComponent( phet.chipper.version ) + '&' + 'locale=' + encodeURIComponent( phet.chipper.locale ) + '&' + 'buildTimestamp=' + encodeURIComponent( phet.chipper.buildTimestamp ) + '&' +