20 lines
No EOL
399 B
JavaScript
20 lines
No EOL
399 B
JavaScript
/*
|
|
* Copy current page url to clipboard.
|
|
* v2.1
|
|
* https://github.com/cotes2020/jekyll-theme-chirpy
|
|
* © 2020 Cotes Chung
|
|
* MIT License
|
|
*/
|
|
|
|
function copyLink(url) {
|
|
if (!url || 0 === url.length)
|
|
url = window.location.href;
|
|
var $temp = $("<input>");
|
|
|
|
$("body").append($temp);
|
|
$temp.val(url).select();
|
|
document.execCommand("copy");
|
|
$temp.remove();
|
|
|
|
alert("Link copied successfully!");
|
|
} |