diff --git a/template/app/view/comments/List.js b/template/app/view/comments/List.js index 33d82af8aecda156ea0177ca6c47d8e7c76cfb78..e2fde94764bdda91cc4b0051fb76bbce02463fff 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);