Page Move Bug Fix

Deselect All button no longer stays invisible after Page Move
This commit is contained in:
JoseQuintas2021 2025-04-23 15:15:22 +01:00
parent f66cadaf2c
commit 19a3584df0

View File

@ -839,9 +839,6 @@ class PdfContainer {
const selectIcon = document.getElementById('select-All-Container');
const deselectIcon = document.getElementById('deselect-All-Container');
selectIcon.style.display = 'inline';
deselectIcon.style.display = 'none';
checkboxes.forEach((checkbox) => {
const pageNumber = Array.from(checkbox.parentNode.parentNode.children).indexOf(checkbox.parentNode) + 1;