collinenlucy.nl/client/rsvp_confirmed.js

11 lines
212 B
JavaScript
Raw Permalink Normal View History

const COOKIE_NAME = "hasRsvped";
function persistRsvp(hasRsvped = true) {
document.cookie = `${COOKIE_NAME}=${String(hasRsvped)}; path=/`;
}
function rsvpConfirmed() {
persistRsvp(true);
}
rsvpConfirmed();