mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-10 21:22:35 +01:00
moved back to common
This commit is contained in:
parent
8eae1f282b
commit
7a53ed96ed
@ -8,4 +8,25 @@ window.analytics = new testPilotGA({
|
|||||||
an: 'Firefox Send',
|
an: 'Firefox Send',
|
||||||
ds: 'web',
|
ds: 'web',
|
||||||
tid: window.trackerId
|
tid: window.trackerId
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const isSender = location.pathname.includes('/download');
|
||||||
|
|
||||||
|
gcmCompliant().catch(err => {
|
||||||
|
$('#page-one').attr('hidden', true);
|
||||||
|
$('#download').attr('hidden', true);
|
||||||
|
sendEvent(isSender ? 'sender' : '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(isSender ? 'sender' : 'recipient', 'unsupported', {
|
||||||
|
cd6: new Error('Firefox is outdated.')
|
||||||
|
}).then(() => {
|
||||||
|
location.replace('/unsupported');
|
||||||
|
});
|
||||||
|
}
|
@ -8,25 +8,6 @@ const storage = new Storage(localStorage);
|
|||||||
const $ = require('jquery');
|
const $ = require('jquery');
|
||||||
require('jquery-circle-progress');
|
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;
|
const Raven = window.Raven;
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
|
@ -11,26 +11,6 @@ const bytes = require('bytes');
|
|||||||
const Storage = require('./storage');
|
const Storage = require('./storage');
|
||||||
const storage = new Storage(localStorage);
|
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');
|
const $ = require('jquery');
|
||||||
require('jquery-circle-progress');
|
require('jquery-circle-progress');
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user