From 67e8f16c2bc6d29e206b194c2db9de3773b2de38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=B5=9C=EB=AF=BC=ED=98=B8?= Date: Thu, 12 Apr 2018 15:37:49 +0900 Subject: [PATCH] Pass event object for error pass event object in setTimeout function. It occurs a error. --- src/app.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.coffee b/src/app.coffee index 96647035..791846b9 100644 --- a/src/app.coffee +++ b/src/app.coffee @@ -76,7 +76,7 @@ class App null .on 'compositionend', (e) => @isComposing = false - setTimeout((e) => @dispatch(e)) + setTimeout(((e) => @dispatch(e)).bind(this, e)) null .on 'keyup.atwhoInner', (e) => this.onKeyup(e)