update #5

Open
mdebray wants to merge 231 commits from update into main
Showing only changes of commit f256e8f029 - Show all commits

View file

@ -33,7 +33,6 @@
<option value="0" th:text="#{overlay-pdfs.position.foreground}">Foreground</option>
<option value="1" th:text="#{overlay-pdfs.position.background}">Background</option>
</select>
<br>
<div id="countsContainer" style="display: none;">
<label th:text="#{overlay-pdfs.counts.label}">Overlay Counts</label>
<!-- Inputs for counts will be dynamically added here -->
@ -57,7 +56,11 @@
console.log("files",files);
if(files) {
const fileCount = files.length;
countsContainer.appendChild(document.createElement("br"));
const label = document.createElement('label');
label.setAttribute('th:text', '#{overlay-pdfs.counts.label}');
label.textContent = "Overlay Counts";
countsContainer.appendChild(label);
for (let i = 0; i < fileCount; i++) {
const input = document.createElement('input');
input.type = 'text';