Merge pull request #8 from alpha6/trim_sting_to_copy
trim string in clipboard
This commit is contained in:
commit
d8a2c09ea0
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue