fixed metrics for sender and recipient

This commit is contained in:
Abhinav Adduri 2017-07-27 09:54:50 -07:00 committed by Erica Wright
parent fae6561393
commit 8eae1f282b
No known key found for this signature in database
GPG Key ID: D9F2AF9D67D0AAB7
3 changed files with 40 additions and 20 deletions

View File

@ -8,23 +8,4 @@ window.analytics = new testPilotGA({
an: 'Firefox Send',
ds: 'web',
tid: window.trackerId
});
gcmCompliant().catch(err => {
$('#page-one').attr('hidden', true);
$('#download').attr('hidden', true);
sendEvent('sender', 'unsupported', {
cd6: err
}).then(() => {
location.replace('/unsupported');
});
});
if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1 &&
parseInt(navigator.userAgent.toLowerCase().match(/firefox\/*([^\n\r]*)\./)[1]) <= 49) {
sendEvent('sender', 'unsupported', {
cd6: 'Unsupported Firefox'
}).then(() => {
location.replace('/unsupported');
});
}
});

View File

@ -8,6 +8,25 @@ const storage = new Storage(localStorage);
const $ = require('jquery');
require('jquery-circle-progress');
gcmCompliant().catch(err => {
$('#page-one').attr('hidden', true);
$('#download').attr('hidden', true);
sendEvent('recipient', 'unsupported', {
cd6: err
}).then(() => {
location.replace('/unsupported');
});
});
if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1 &&
parseInt(navigator.userAgent.toLowerCase().match(/firefox\/*([^\n\r]*)\./)[1]) <= 49) {
sendEvent('recipient', 'unsupported', {
cd6: new Error('Firefox is outdated.')
}).then(() => {
location.replace('/unsupported');
});
}
const Raven = window.Raven;
$(document).ready(function() {

View File

@ -11,6 +11,26 @@ const bytes = require('bytes');
const Storage = require('./storage');
const storage = new Storage(localStorage);
gcmCompliant().catch(err => {
$('#page-one').attr('hidden', true);
$('#download').attr('hidden', true);
sendEvent('sender', 'unsupported', {
cd6: err
}).then(() => {
location.replace('/unsupported');
});
});
if (navigator.userAgent.toLowerCase().indexOf('firefox') > -1 &&
parseInt(navigator.userAgent.toLowerCase().match(/firefox\/*([^\n\r]*)\./)[1]) <= 49) {
sendEvent('sender', 'unsupported', {
cd6: new Error('Firefox is outdated.')
}).then(() => {
location.replace('/unsupported');
});
}
const $ = require('jquery');
require('jquery-circle-progress');