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
+5 -2
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') {