show error page on firefox v49 and below

This commit is contained in:
Erica Wright 2017-07-27 11:13:59 -04:00
parent 303b34a70b
commit 6b291ae012
No known key found for this signature in database
GPG key ID: D9F2AF9D67D0AAB7
3 changed files with 17 additions and 19 deletions

View file

@ -3,8 +3,24 @@ window.Raven.config(window.dsn).install();
window.dsn = undefined;
const testPilotGA = require('testpilot-ga');
const {gcmCompliant, sendEvent} = require('./utils');
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) {
location.replace('/unsupported');
}