1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-09-21 12:20:13 +02:00

Fix insertFileButton referencing the old addPdfs method. (#1809)

This commit is contained in:
FiratUsta 2024-09-05 17:14:22 +03:00 committed by GitHub
parent 81dbfa220f
commit d5b0f1f4ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,12 +70,12 @@ class PdfActionsManager {
insertFileButtonCallback(e) { insertFileButtonCallback(e) {
var imgContainer = this.getPageContainer(e.target); var imgContainer = this.getPageContainer(e.target);
this.addPdfs(imgContainer); this.addFiles(imgContainer);
} }
setActions({ movePageTo, addPdfs, rotateElement }) { setActions({ movePageTo, addFiles, rotateElement }) {
this.movePageTo = movePageTo; this.movePageTo = movePageTo;
this.addPdfs = addPdfs; this.addFiles = addFiles;
this.rotateElement = rotateElement; this.rotateElement = rotateElement;
this.moveUpButtonCallback = this.moveUpButtonCallback.bind(this); this.moveUpButtonCallback = this.moveUpButtonCallback.bind(this);
@ -153,7 +153,7 @@ class PdfActionsManager {
const insertFileButtonRight = document.createElement("button"); const insertFileButtonRight = document.createElement("button");
insertFileButtonRight.classList.add("btn", "btn-primary", "pdf-actions_insert-file-button"); insertFileButtonRight.classList.add("btn", "btn-primary", "pdf-actions_insert-file-button");
insertFileButtonRight.innerHTML = `<span class="material-symbols-rounded">add</span>`; insertFileButtonRight.innerHTML = `<span class="material-symbols-rounded">add</span>`;
insertFileButtonRight.onclick = () => addPdfs(); insertFileButtonRight.onclick = () => addFiles();
insertFileButtonRightContainer.appendChild(insertFileButtonRight); insertFileButtonRightContainer.appendChild(insertFileButtonRight);
div.appendChild(insertFileButtonRightContainer); div.appendChild(insertFileButtonRightContainer);