From 7a144838bbfe393731253adb7493d919a7c989cf Mon Sep 17 00:00:00 2001 From: vvakame Date: Wed, 8 Oct 2014 01:25:47 +0900 Subject: [PATCH] fix mithril/mithril-tests.ts --- mithril/mithril-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mithril/mithril-tests.ts b/mithril/mithril-tests.ts index 5ca26702c..56323c5dd 100644 --- a/mithril/mithril-tests.ts +++ b/mithril/mithril-tests.ts @@ -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 (todo.Todo)({description: this.description()})); this.description(""); } }.bind(this);