moved back to common

This commit is contained in:
Abhinav Adduri
2017-07-27 10:01:39 -07:00
committed by Erica Wright
parent 8eae1f282b
commit 7a53ed96ed
3 changed files with 22 additions and 40 deletions
-20
View File
@@ -11,26 +11,6 @@ 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');