Merge pull request #2457 from viviicat/use-html-templates
make use of templates instead of hidden divs which is more elegant
This commit is contained in:
commit
300573e66e
2 changed files with 49 additions and 51 deletions
|
@ -628,9 +628,9 @@ let BookWyrm = new (class {
|
|||
}
|
||||
|
||||
function toggleStatus(status) {
|
||||
for (const child of statusNode.children) {
|
||||
BookWyrm.toggleContainer(child, !child.classList.contains(status));
|
||||
}
|
||||
const template = document.querySelector(`#barcode-${status}`);
|
||||
|
||||
statusNode.replaceChildren(template ? template.content.cloneNode(true) : null);
|
||||
}
|
||||
|
||||
function initBarcodes(cameraId = null) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue