Explicitly return from keydown

This commit is contained in:
Daniel Imms
2016-07-15 16:33:30 -07:00
parent a3a7017f6b
commit 0010a5a109
+1 -1
View File
@@ -2674,7 +2674,7 @@
*/
Terminal.prototype.keyDown = function(ev) {
if (!this.compositionHelper.keydown.bind(this.compositionHelper)(ev)) {
return;
return false;
}
var self = this;