1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-06-09 09:08:22 +00:00
Cotes Chung 840eab9566 Feature: Added post sharing options.
Also added a license statement at the bottom of the posts.
2020-02-21 04:48:06 +08:00

1 line
180 B
JavaScript

function copyLink(){var a=window.location.href;var b=$("<input>");$("body").append(b);b.val(a).select();document.execCommand("copy");b.remove();alert("Link copied successfully!")};