added csp directives

This commit is contained in:
Danny Coates 2017-07-12 10:56:04 -07:00
parent b32e63c305
commit 9234bce75d
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
5 changed files with 37 additions and 12 deletions

View file

@ -9,7 +9,8 @@ $(document).ready(function() {
$('#send-file').click(() => {
window.location.replace(`${window.location.origin}`);
});
const download = () => {
$('#download-btn').click(download);
function download() {
const fileReceiver = new FileReceiver();
const name = document.createElement('p');
const $btn = $('#download-btn');
@ -84,7 +85,5 @@ $(document).ready(function() {
Raven.captureException(err);
return Promise.reject(err);
});
};
window.download = download;
}
});

View file

@ -10,6 +10,8 @@ $(document).ready(function() {
$('#compliance-error').show();
});
$('#file-upload').change(onUpload);
$('#page-one').on('dragover', allowDrop).on('drop', onUpload);
// reset copy button
const $copyBtn = $('#copy-btn');
$copyBtn.attr('disabled', false);
@ -61,11 +63,11 @@ $(document).ready(function() {
});
// on file upload by browse or drag & drop
window.onUpload = event => {
function onUpload(event) {
event.preventDefault();
let file = '';
if (event.type === 'drop') {
file = event.dataTransfer.files[0];
file = event.originalEvent.dataTransfer.files[0];
} else {
file = event.target.files[0];
}
@ -143,11 +145,11 @@ $(document).ready(function() {
$('#page-one').hide();
$('#upload-error').show();
});
};
}
window.allowDrop = function(ev) {
function allowDrop(ev) {
ev.preventDefault();
};
}
function checkExistence(id, populate) {
const xhr = new XMLHttpRequest();