Merge pull request #8 from alpha6/trim_sting_to_copy

trim string in clipboard
This commit is contained in:
Denis Fedoseev 2017-08-03 09:11:04 +03:00 committed by GitHub
commit d8a2c09ea0

View file

@ -101,7 +101,7 @@
//TODO: rewrite it to vue/JS from jquery
var $temp = $("<input>");
$("body").append($temp);
$temp.val($(event.target).text()).select();
$temp.val($(event.target).text().trim()).select();
document.execCommand("copy");
$temp.remove();
},