blob: 421ab2cbf9730ee81e21d49e4d37fc26993ea8f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
function copyURL() {
var copyText = document.getElementById("url");
navigator.clipboard.writeText(copyText.href);
copyText.classList.add("highlight");
window.setTimeout(() => copyText.classList.remove("highlight"), 1500);
document.getElementById('share-notice').style.display = "none";
document.getElementById('shared-notice').style.display = "initial";
}
function resetURL() {
document.getElementById('share-notice').style.display = "initial";
document.getElementById('shared-notice').style.display = "none";
}
|