shx-3d-render

main
Jan Umbach 2024-06-21 19:50:40 +02:00
parent 8cb468b352
commit d68138a5c3
1 changed files with 2 additions and 2 deletions

View File

@ -142,7 +142,7 @@
function SHX_IFC_genColorSelect(inputID, labelText, inputName, inputVal, options, section_id) {
let html = `
<label class="form__label custom shx-ifc-form_label" for="${inputID}-label">${labelText}</label>
<div id="${inputID}" class="shx-ifc-colorselect">
<section id="${inputID}" class="shx-ifc-colorselect">
`;
for(let i = 0; i < options.length; i++) {
@ -152,7 +152,7 @@
`;
}
html += `</div>`;
html += `</section>`;
return html;
}