mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-08 00:27:58 +00:00
Fix copy link function (#133)
This commit is contained in:
parent
2cf5a58adf
commit
8484a34195
@ -8,12 +8,10 @@
|
|||||||
|
|
||||||
function copyLink(url) {
|
function copyLink(url) {
|
||||||
if (!url || 0 === url.length) {
|
if (!url || 0 === url.length) {
|
||||||
return;
|
url = window.location.href;
|
||||||
}
|
}
|
||||||
|
|
||||||
url = window.location.href;
|
|
||||||
var $temp = $("<input>");
|
var $temp = $("<input>");
|
||||||
|
|
||||||
$("body").append($temp);
|
$("body").append($temp);
|
||||||
$temp.val(url).select();
|
$temp.val(url).select();
|
||||||
document.execCommand("copy");
|
document.execCommand("copy");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user