Skip to content

Commit 34b4443

Browse files
committed
Merge branch 'DooHTML-DOM-v0.92.2-beta-april-7-2024' of https://github.com/hman61/js-framework-benchmark into hman61-DooHTML-DOM-v0.92.2-beta-april-7-2024
2 parents acf7398 + fcc0079 commit 34b4443

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

frameworks/keyed/doohtml-dom/js/Main.class.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,9 @@ Doo.define(
8787
}
8888

8989
update() {
90+
const bang = ' !!!'
9091
for (let i=0, len = this.data.rows.length;i<len;i+=10) {
91-
this.tbody.childNodes[i].childNodes[1].childNodes[0].innerText = this.data.rows[i].label += ' !!!'
92+
this.tbody.childNodes[i].childNodes[1].childNodes[0].firstChild.textContent = this.data.rows[i].label = `${this.data.rows[i].label}${bang}`
9293
}
9394
}
9495

0 commit comments

Comments
 (0)