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.
18 lines
435 B
18 lines
435 B
// public/js/scripts.js
|
|
|
|
function openPopup() {
|
|
document.getElementById("followPopup").style.display = "block";
|
|
}
|
|
|
|
function closePopup() {
|
|
document.getElementById("followPopup").style.display = "none";
|
|
}
|
|
|
|
// Close the popup if the user clicks outside of it
|
|
window.onclick = function(event) {
|
|
var popup = document.getElementById("followPopup");
|
|
if (event.target == popup) {
|
|
popup.style.display = "none";
|
|
}
|
|
}
|