1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-11-11 02:10:11 +01:00

Merge pull request #1205 from foivospro/main

Fix rotation function
This commit is contained in:
Anthony Stirling 2024-05-14 18:01:15 +01:00 committed by GitHub
commit 44e85a1d38
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,11 @@
console.log("loading pdf");
document.querySelector("#editSection").style.display = "";
const existingPreview = document.getElementById("pdf-preview");
if (existingPreview) {
existingPreview.remove();
}
var url = URL.createObjectURL(fileInput.files[0])
pdfjsLib.GlobalWorkerOptions.workerSrc = 'pdfjs/pdf.worker.js'
const pdf = await pdfjsLib.getDocument(url).promise;