Public archive for the Return to Ritherdon project. https://www.nicolaellisandritherdon.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
1.0 KiB

function toggleSiteSideMenu() {
let displayStyle = document.getElementById("be-site-side-menu").style.display;
if (displayStyle === "flex") {
document.getElementById("be-site-side-menu").style.display = "none";
} else {
document.getElementById("be-site-side-menu").style.display = "flex";
}
}
function closeAlert() {
document.getElementById("be-alert-container").style.display = "none";
}
function copyToClipBoard (slug) {
let URL = location.protocol + "//" + location.host + "/storage/view/media/" + slug;
let popup = document.getElementById(slug + "-popup");
navigator.clipboard.writeText(URL).then(() => {
/* Resolved - text copied to clipboard */
console.log("Copied: " + URL + " to clipboard.");
popup.style.visibility = "visible";
setTimeout(function () {
popup.style.visibility = "hidden";
}, 2000);
},() => {
/* Rejected - clipboard failed */
console.log("Couldn't copy " + URL + " to clipboard");
});
}