1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-07-02 15:30:39 +02:00

change metadata fix

This commit is contained in:
Anthony Stirling 2023-08-30 18:52:31 +01:00
parent 58ad7a1e8a
commit 0ed021357b

View File

@ -87,19 +87,17 @@
<script> <script>
const deleteAllCheckbox = document.querySelector("#deleteAll"); const deleteAllCheckbox = document.querySelector("#deleteAll");
const inputs = document.querySelectorAll(".form-control"); let inputs = document.querySelectorAll("input");
const customMetadataDiv = document.getElementById('customMetadata'); const customMetadataDiv = document.getElementById('customMetadata');
const otherMetadataEntriesDiv = document.getElementById('otherMetadataEntries'); const otherMetadataEntriesDiv = document.getElementById('otherMetadataEntries');
deleteAllCheckbox.addEventListener("change", function(event) { deleteAllCheckbox.addEventListener("change", function(event) {
if (event.target !== deleteAllCheckbox) {
return;
}
inputs.forEach(input => { inputs.forEach(input => {
if (input === deleteAllCheckbox) { // If it's the deleteAllCheckbox or any file input, skip
if (input === deleteAllCheckbox || input.type === "file") {
return; return;
} }
// Disable or enable based on the checkbox state
input.disabled = deleteAllCheckbox.checked; input.disabled = deleteAllCheckbox.checked;
}); });
}); });