shx-3d-render

main
Jan Umbach 2024-06-21 20:23:13 +02:00
parent 3b4e02512b
commit 243bb50733
1 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@
<script type="text/javascript">
let FilamentList = {
const FilamentList = {
"#10": {
"name": "Schwarz (Matt)",
"hex": "#000000"
@ -114,7 +114,7 @@
}, "TextOne": {
"text1": "Julia",
"font": "LT Beverage",
"color": "#000000"
"color": "#11"
}
};
@ -173,7 +173,7 @@
for(let color in options) {
html += `
<input type="radio" id="${inputID}-${i}" form="product-form-${section_id}" name="properties[${inputName}]" value="${options[color].name}" ${inputVal === color ? 'checked' : ''}>
<label for="${inputID}-${i}" style="background-color: ${options[i]};"></label>
<label for="${inputID}-${i}" style="background-color: ${options[color].hex};"></label>
`;
}