Skip to content
This repository has been archived by the owner on May 22, 2021. It is now read-only.

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dannycoates committed Jul 25, 2017
1 parent 15ac0e1 commit dd0ab71
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 18 deletions.
4 changes: 1 addition & 3 deletions frontend/src/fileReceiver.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,7 @@ class FileReceiver extends EventEmitter {

xhr.onload = function(event) {
if (xhr.status === 404) {
reject(
new Error('notfound')
);
reject(new Error('notfound'));
return;
}

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ $(document).ready(function() {
event.preventDefault();

// don't allow upload if not on upload page
if ($('#page-one').attr('hidden')){
if ($('#page-one').attr('hidden')) {
return;
}

Expand Down Expand Up @@ -472,7 +472,7 @@ $(document).ready(function() {
const $popupNvmSpan = $('<span>', { class: 'popup-no' });
$popupNvmSpan.attr('data-l10n-id', 'deletePopupCancel');

$popupText.html([$popupMessage, $popupDelSpan, $popupNvmSpan]);
$popupText.html([$popupMessage, $popupDelSpan, $popupNvmSpan]);

// add data cells to table row
row.appendChild(name);
Expand Down
3 changes: 2 additions & 1 deletion public/main.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
/*** index.html ***/
html {
background: url('resources/send_bg.svg');
font-family: -apple-system,
font-family:
-apple-system,
BlinkMacSystemFont,
'SF Pro Text',
Helvetica,
Expand Down
21 changes: 9 additions & 12 deletions server/server.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ app.use(
'https://sentry.prod.mozaws.net',
'https://www.google-analytics.com'
],
imgSrc: [
"'self'",
'https://www.google-analytics.com'
],
imgSrc: ["'self'", 'https://www.google-analytics.com'],
scriptSrc: ["'self'"],
styleSrc: ["'self'", 'https://code.cdn.mozilla.net'],
fontSrc: ["'self'", 'https://code.cdn.mozilla.net'],
Expand Down Expand Up @@ -116,10 +113,10 @@ app.get('/download/:id', (req, res) => {
return;
}

storage.filename(id).then(filename => {
return storage
.length(id)
.then(contentLength => {
storage
.filename(id)
.then(filename => {
return storage.length(id).then(contentLength => {
storage.ttl(id).then(timeToExpiry => {
res.render('download', {
filename: decodeURIComponent(filename),
Expand All @@ -129,10 +126,10 @@ app.get('/download/:id', (req, res) => {
});
});
});
})
.catch(() => {
res.status(404).render('notfound');
});;
})
.catch(() => {
res.status(404).render('notfound');
});
});

app.get('/assets/download/:id', (req, res) => {
Expand Down

0 comments on commit dd0ab71

Please sign in to comment.