fix mithril/mithril-tests.ts

This commit is contained in:
vvakame
2014-10-08 01:25:47 +09:00
parent 59072fddd1
commit 7a144838bb
+1 -1
View File
@@ -24,7 +24,7 @@ var todo = {
this.add = function() {
if (this.description()) {
this.list.push(new todo.Todo({description: this.description()}));
this.list.push(new (<any>todo.Todo)({description: this.description()}));
this.description("");
}
}.bind(this);