Merge branch 'next' of github.com:lhorie/mithril.js into next

This commit is contained in:
Leo Horie 2016-02-05 12:19:41 -05:00
commit 56a51664b7
2 changed files with 17 additions and 4 deletions

View file

@ -362,7 +362,7 @@ var MyComponent = {
},
view: function(ctrl) {
return m("ul", [
ctrl.things().map(function(name) {
ctrl.things().map(function(thing) {
return m("li", thing.name)
})
]);