Skip to content

Commit 07c01e1

Browse files
committed
update domvm, toggle homogeneous list flag
1 parent b4be2e1 commit 07c01e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

domvm-v2.0.0-beta/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
"webpack": "1.13.2"
1414
},
1515
"dependencies": {
16-
"domvm": "git://github.com/leeoniya/domvm.git#811055fffa3058a42d79085520fa034dc2c6a948"
16+
"domvm": "git://github.com/leeoniya/domvm.git#a7bb229221e7c8bf6542af14fe63e1bf9371d460"
1717
}
1818
}

domvm-v2.0.0-beta/src/main.es6.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ function View(vm, store) {
100100
])
101101
]),
102102
h("table.table.table-hover.table-striped.test-data", {onclick: tableClick}, [
103-
h2("tbody", store.data.map(item =>
103+
h2("tbody", {_list: true}, store.data.map(item =>
104104
h("tr", {_key: item.id, class: item.id === store.selected ? 'danger' : null}, [
105105
h("td.col-md-1", item.id),
106106
h("td.col-md-4", [

0 commit comments

Comments
 (0)