Add missing param (#1090)

This commit is contained in:
Philippe Potvin 2016-12-05 22:35:40 -05:00 committed by Matheus Fernandes
parent e345ba4f60
commit d459112676

View file

@ -12,7 +12,7 @@ exports.extend = function (terminal) {
if (sel.focusNode && sel.focusNode.nodeName === '#text') {
terminal.screen_.expandSelection(sel);
if (terminal.copyOnSelect) {
terminal.copyStringToClipboard();
terminal.copyStringToClipboard(sel);
}
}
};