Merge pull request #339 from mozilla/v49
Show error page on firefox v49 and below
This commit is contained in:
commit
6be94156db
@ -3,8 +3,28 @@ window.Raven.config(window.dsn).install();
|
|||||||
window.dsn = undefined;
|
window.dsn = undefined;
|
||||||
|
|
||||||
const testPilotGA = require('testpilot-ga');
|
const testPilotGA = require('testpilot-ga');
|
||||||
|
const {gcmCompliant, sendEvent} = require('./utils');
|
||||||
window.analytics = new testPilotGA({
|
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 => {
|
||||||
|
sendEvent(isSender ? 'sender' : 'recipient', 'unsupported', {
|
||||||
|
cd6: err
|
||||||
|
}).then(() => {
|
||||||
|
location.replace('/unsupported/gcm');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
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/outdated');
|
||||||
|
});
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
require('./common');
|
require('./common');
|
||||||
const FileReceiver = require('./fileReceiver');
|
const FileReceiver = require('./fileReceiver');
|
||||||
const { notify, findMetric, gcmCompliant, sendEvent } = require('./utils');
|
const { notify, findMetric, sendEvent } = require('./utils');
|
||||||
const bytes = require('bytes');
|
const bytes = require('bytes');
|
||||||
const Storage = require('./storage');
|
const Storage = require('./storage');
|
||||||
const storage = new Storage(localStorage);
|
const storage = new Storage(localStorage);
|
||||||
@ -11,14 +11,6 @@ require('jquery-circle-progress');
|
|||||||
const Raven = window.Raven;
|
const Raven = window.Raven;
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
gcmCompliant().catch(err => {
|
|
||||||
$('#download').attr('hidden', true);
|
|
||||||
sendEvent('recipient', 'unsupported', {
|
|
||||||
cd6: err
|
|
||||||
}).then(() => {
|
|
||||||
location.replace('/unsupported');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
//link back to homepage
|
//link back to homepage
|
||||||
$('.send-new').attr('href', window.location.origin);
|
$('.send-new').attr('href', window.location.origin);
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@ require('./common');
|
|||||||
const FileSender = require('./fileSender');
|
const FileSender = require('./fileSender');
|
||||||
const {
|
const {
|
||||||
notify,
|
notify,
|
||||||
gcmCompliant,
|
|
||||||
findMetric,
|
findMetric,
|
||||||
sendEvent,
|
sendEvent,
|
||||||
ONE_DAY_IN_MS
|
ONE_DAY_IN_MS
|
||||||
@ -25,15 +24,6 @@ if (storage.has('referrer')) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
gcmCompliant().catch(err => {
|
|
||||||
$('#page-one').attr('hidden', true);
|
|
||||||
sendEvent('sender', 'unsupported', {
|
|
||||||
cd6: err
|
|
||||||
}).then(() => {
|
|
||||||
location.replace('/unsupported');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
$('#file-upload').change(onUpload);
|
$('#file-upload').change(onUpload);
|
||||||
|
|
||||||
$('.legal-links a, .social-links a, #dl-firefox').click(function(target) {
|
$('.legal-links a, .social-links a, #dl-firefox').click(function(target) {
|
||||||
|
@ -67,6 +67,8 @@ expiredPageHeader = This link has expired or never existed in the first place!
|
|||||||
notSupportedHeader = Your browser is not supported.
|
notSupportedHeader = Your browser is not supported.
|
||||||
// Firefox Send is a brand name and should not be localized.
|
// Firefox Send is a brand name and should not be localized.
|
||||||
notSupportedDetail = Unfortunately this browser does not support the web technology that powers Firefox Send. You’ll need to try another browser. We recommend Firefox!
|
notSupportedDetail = Unfortunately this browser does not support the web technology that powers Firefox Send. You’ll need to try another browser. We recommend Firefox!
|
||||||
|
notSupportedOutdatedDetail = Unfortunately this version of Firefox does not support the web technology that powers Firefox Send. You’ll need to update your browser.
|
||||||
|
updateFirefox = Update Firefox
|
||||||
downloadFirefoxButtonSub = Free Download
|
downloadFirefoxButtonSub = Free Download
|
||||||
uploadedFile = File
|
uploadedFile = File
|
||||||
copyFileList = Copy URL
|
copyFileList = Copy URL
|
||||||
|
@ -568,13 +568,13 @@ tbody {
|
|||||||
margin: 0 auto 23px;
|
margin: 0 auto 23px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#firefox-logo {
|
.firefox-logo {
|
||||||
width: 70px;
|
width: 70px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#dl-firefox {
|
#dl-firefox,
|
||||||
|
#update-firefox {
|
||||||
margin-bottom: 181px;
|
margin-bottom: 181px;
|
||||||
width: 260px;
|
|
||||||
height: 80px;
|
height: 80px;
|
||||||
background: #12bc00;
|
background: #12bc00;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
@ -589,14 +589,15 @@ tbody {
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
line-height: 1;
|
line-height: 1;
|
||||||
|
padding: 0 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#dl-firefox-text {
|
.unsupported-button-text {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
margin-left: 20.4px;
|
margin-left: 20.4px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#dl-firefox-text > span {
|
.unsupported-button-text > span {
|
||||||
font-family: 'Fira Sans';
|
font-family: 'Fira Sans';
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
@ -96,8 +96,11 @@ app.get('/', (req, res) => {
|
|||||||
res.render('index');
|
res.render('index');
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/unsupported', (req, res) => {
|
app.get('/unsupported/:reason', (req, res) => {
|
||||||
res.render('unsupported');
|
const outdated = req.params.reason === 'outdated';
|
||||||
|
res.render('unsupported', {
|
||||||
|
outdated: outdated
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
app.get('/legal', (req, res) => {
|
app.get('/legal', (req, res) => {
|
||||||
|
@ -1,11 +1,19 @@
|
|||||||
<div id="unsupported-browser">
|
<div id="unsupported-browser">
|
||||||
<div class="title" data-l10n-id="notSupportedHeader"></div>
|
<div class="title" data-l10n-id="notSupportedHeader"></div>
|
||||||
<div class="description" data-l10n-id="notSupportedDetail"></div>
|
{{#if outdated}}
|
||||||
<a id="dl-firefox" href="https://www.mozilla.org/firefox/new/?scene=2" target="_blank">
|
<div class="description" data-l10n-id="notSupportedOutdatedDetail"></div>
|
||||||
<img src="/resources/firefox_logo-only.svg" id="firefox-logo" alt="Firefox"/>
|
<a id="update-firefox" href="https://support.mozilla.org/kb/update-firefox-latest-version">
|
||||||
<div id="dl-firefox-text">Firefox<br>
|
<img src="/resources/firefox_logo-only.svg" class="firefox-logo" alt="Firefox"/>
|
||||||
<span data-l10n-id="downloadFirefoxButtonSub"></span>
|
<div class="unsupported-button-text" data-l10n-id="updateFirefox"></div>
|
||||||
</div>
|
</a>
|
||||||
</a>
|
{{else}}
|
||||||
|
<div class="description" data-l10n-id="notSupportedDetail"></div>
|
||||||
|
<a id="dl-firefox" href="https://www.mozilla.org/firefox/new/?scene=2" target="_blank">
|
||||||
|
<img src="/resources/firefox_logo-only.svg" class="firefox-logo" alt="Firefox"/>
|
||||||
|
<div class="unsupported-button-text">Firefox<br>
|
||||||
|
<span data-l10n-id="downloadFirefoxButtonSub"></span>
|
||||||
|
</div>
|
||||||
|
</a>
|
||||||
|
{{/if}}
|
||||||
<div class="unsupported-description" data-l10n-id="uploadPageExplainer"></div>
|
<div class="unsupported-description" data-l10n-id="uploadPageExplainer"></div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user