diff --git a/src/elements/a-gltf-entity.js b/src/elements/a-gltf-entity.js index 005713f93733b2480d52c8b7c8abfc609787b143..9e3ed0f61f370c35b7aa1fc6a3d7428b9bd7df88 100644 --- a/src/elements/a-gltf-entity.js +++ b/src/elements/a-gltf-entity.js @@ -95,17 +95,15 @@ function attachTemplate(templateEl) { const templateRoot = clone.firstElementChild; const templateRootAttrs = templateRoot.attributes; - for (let i = 0; i < targetEls.length; i++) { - const targetEl = targetEls[i]; - + for (const targetEl of targetEls) { // Merge root element attributes with the target element - for (let j = 0; j < templateRootAttrs.length; j++) { - targetEl.setAttribute(templateRootAttrs[j].name, templateRootAttrs[j].value); + for (const { name, value } of templateRootAttrs) { + targetEl.setAttribute(name, value); } // Append all child elements - for (let j = 0; j < templateRoot.children.length; j++) { - targetEl.appendChild(document.importNode(templateRoot.children[j], true)); + for (const child of templateRoot.children) { + targetEl.appendChild(document.importNode(child, true)); } } }