Merge pull request #2140 from virtuacoplenny/lenny/ie11-analytics

fix(analytics): use string concatenation for ie11
This commit is contained in:
Saúl Ibarra Corretgé 2017-11-08 08:25:07 +01:00 committed by GitHub
commit b838a2be05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -27,8 +27,11 @@
value = value ? Math.round(parseFloat(value)) : null;
const label = data.label || '';
ga('send', 'event', 'jit.si',
`${action}.${data.browserName}`, label, value);
// Intentionally use string concatenation as analytics needs to work on
// IE but this file does not go through babel.
// eslint-disable-next-line prefer-template
ga('send', 'event', 'jit.si', action + '.' + data.browserName,
label, value);
};
if (typeof ctx.JitsiMeetJS === 'undefined') {