Move shared CSS/JS from templates to static/style.css and static/app.js

This commit is contained in:
2026-06-10 12:34:53 -05:00
parent 7ed7bb2bb0
commit 6f0dfb0b7f
6 changed files with 383 additions and 401 deletions
-12
View File
@@ -129,17 +129,5 @@ function toggleSubcomponents(cb) {
size.setAttribute('required', '');
}
}
function metaSelectChanged(sel, inputId) {
var input = document.getElementById(inputId);
if (sel.value === '__new__') {
input.style.display = '';
input.value = '';
input.focus();
} else {
input.style.display = 'none';
input.value = sel.value;
}
}
</script>
{% endblock %}