From ee92d2a08e9986febeac5beb1faeeec3564777d2 Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Tue, 2 Oct 2012 12:06:34 -0700 Subject: [PATCH] Fix a problem with SPACE key not working in comment editor. --- template/app/view/comments/List.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/template/app/view/comments/List.js b/template/app/view/comments/List.js index 33d82af8..e2fde947 100644 --- a/template/app/view/comments/List.js +++ b/template/app/view/comments/List.js @@ -44,6 +44,10 @@ Ext.define('Docs.view.comments.List', { afterRender: function() { this.callParent(arguments); + // Remove the keydown handler set up in Ext.view.View#afterRender + // which prevents CodeMirror from receiving the event when the SPACE key is pressed. + this.mun(this.getTargetEl(), "keydown"); + this.delegateClick("a.voteCommentUp", function(el, r) { this.vote(el, r, "up"); }, this); -- GitLab