mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-04 15:00:14 +01:00
Fixed rotate all button not working
This commit is contained in:
parent
f4e5690841
commit
050ae2a512
@ -263,6 +263,7 @@
|
||||
function rotateAll(deg) {
|
||||
for (var i=0; i<pagesContainer.childNodes.length; i++) {
|
||||
const img = pagesContainer.childNodes[i].querySelector("img");
|
||||
if (!img) continue;
|
||||
rotateElement(img, deg)
|
||||
}
|
||||
}
|
||||
@ -271,6 +272,7 @@
|
||||
const pdfDoc = await PDFLib.PDFDocument.create();
|
||||
for (var i=0; i<pagesContainer.childNodes.length; i++) {
|
||||
const img = pagesContainer.childNodes[i].querySelector("img");
|
||||
if (!img) continue;
|
||||
const pages = await pdfDoc.copyPages(img.doc, [img.pageIdx])
|
||||
const page = pages[0];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user