This commit is contained in:
Daniela Arcese 2017-06-23 15:17:47 -04:00
parent b673fad703
commit aa8c1afa9d
5 changed files with 44 additions and 47 deletions

View file

@ -4,7 +4,6 @@ const $ = require('jquery');
const Raven = window.Raven;
$(document).ready(function() {
$('#download-progress').hide();
$('#send-file').click(() => {
@ -63,7 +62,7 @@ $(document).ready(function() {
document.body.appendChild(a);
a.click();
})
.catch(err => {
.catch(err => {
Raven.captureException(err);
return Promise.reject(err);
});