This commit is contained in:
RubenPX 2022-04-29 14:07:04 +02:00
parent 8bbca0301b
commit c78c9c5d7d
2 changed files with 5 additions and 5 deletions

View File

@ -65,7 +65,7 @@ class TableController {
return DOMElements.map(element => {
const info = {}
info.checked = element.checked
Object.values(element.attributes).forEach(attrib => {info[attrib.nodeName.replace(/-/g, "_")] = attrib.nodeValue})
Object.values(element.attributes).forEach(attrib => { info[attrib.nodeName.replace(/-/g, "_")] = attrib.nodeValue })
return info
})
}