diff --git a/public/wetty/hterm.js b/public/wetty/hterm.js index 9250cde..7ba129f 100644 --- a/public/wetty/hterm.js +++ b/public/wetty/hterm.js @@ -6954,7 +6954,8 @@ hterm.Terminal.prototype.onPaste_ = function(e) { * React when the user tries to copy from the scrollPort. */ hterm.Terminal.prototype.onCopy_ = function(e) { - e.preventDefault(); + /* comment this line so that browser copies the selection */ + // e.preventDefault(); setTimeout(this.copySelectionToClipboard.bind(this), 0); };