mirror of
https://github.com/24eme/signaturepdf.git
synced 2023-08-25 09:33:08 +02:00
let instead of var and dead code
This commit is contained in:
parent
afdcbf952c
commit
1996c661b2
@ -23,16 +23,12 @@ var loadPDF = async function(pdfBlob, filename) {
|
|||||||
|
|
||||||
let url = await URL.createObjectURL(pdfBlob);
|
let url = await URL.createObjectURL(pdfBlob);
|
||||||
|
|
||||||
var dataTransfer = new DataTransfer();
|
let dataTransfer = new DataTransfer();
|
||||||
dataTransfer.items.add(new File([pdfBlob], filename, {
|
dataTransfer.items.add(new File([pdfBlob], filename, {
|
||||||
type: 'application/pdf'
|
type: 'application/pdf'
|
||||||
}));
|
}));
|
||||||
document.getElementById('input_pdf').files = dataTransfer.files;
|
document.getElementById('input_pdf').files = dataTransfer.files;
|
||||||
|
|
||||||
if(localStorage.getItem('pdfHistory')) {
|
|
||||||
pdfHistory = JSON.parse(localStorage.getItem('pdfHistory'));
|
|
||||||
}
|
|
||||||
|
|
||||||
var loadingTask = pdfjsLib.getDocument(url);
|
var loadingTask = pdfjsLib.getDocument(url);
|
||||||
loadingTask.promise.then(function(pdf) {
|
loadingTask.promise.then(function(pdf) {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user