Feature: Added post sharing options.

Also added a license statement at the bottom of the posts.
This commit is contained in:
Cotes Chung
2020-02-21 04:48:06 +08:00
parent 2ad56cf249
commit 840eab9566
11 changed files with 219 additions and 27 deletions
+1
View File
@@ -0,0 +1 @@
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!")};