From f872ced863de8eb20f28f7819dbf4b68004c54bf Mon Sep 17 00:00:00 2001 From: Joao Moreno Date: Tue, 25 Jul 2017 11:30:03 +0200 Subject: [PATCH] oops, this is a function --- src/xterm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.js b/src/xterm.js index b0ed3eb7..bf7c95d4 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -517,7 +517,7 @@ Terminal.prototype.initGlobal = function() { on(this.element, 'copy', event => { // If mouse events are active it means the selection manager is disabled and // copy should be handled by the host program. - if (!term.hasSelection) { + if (!term.hasSelection()) { return; } copyHandler(event, term, this.selectionManager);