trim string in clipboard
This commit is contained in:
parent
ba5a95a165
commit
1e8ea69ee1
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