Skip to content

Commit 5579d68

Browse files
committed
Merge branch 'hman61-DooHTML-v0.80.1-keyed'
2 parents 64e50f2 + 51286ed commit 5579d68

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@ Doo.define(
9393
this.renderTable()
9494
}
9595

96-
add() {
97-
let startRow = this.data.rows.length
98-
this.data.rows = this.data.rows.concat(this.buildData())
99-
this.renderTable(this.data.rows, startRow)
96+
add() {
97+
let start = this.data.rows.length
98+
this.data.rows = this.data.rows.concat(this.buildData())
99+
this.append(this.data.rows.slice(start), this.tbody, start)
100100
}
101101

102102
runLots() {

frameworks/keyed/doohtml/js/doo.html.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frameworks/keyed/doohtml/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-framework-benchmark-doohtml",
3-
"version": "0.70.2",
3+
"version": "0.80.1",
44
"description": "DooHTML JS-Benchmark",
55
"main": "Main.class.js",
66
"js-framework-benchmark": {

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ Doo.define(
7474
this.renderTable()
7575
}
7676
add() {
77-
let startRow = this.data.rows.length
77+
let start = this.data.rows.length
7878
this.data.rows = this.data.rows.concat(this.buildData())
79-
this.renderTable(this.data.rows, startRow)
79+
this.append(this.data.rows.slice(start), this.tbody, start)
8080
}
8181

8282
runLots() {

frameworks/non-keyed/doohtml/js/doo.html.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frameworks/non-keyed/doohtml/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-framework-benchmark-doohtml",
3-
"version": "0.60.1",
3+
"version": "0.80.1",
44
"description": "DooHTML JS-Benchmark",
55
"main": "Main.class.js",
66
"js-framework-benchmark": {

0 commit comments

Comments
 (0)