polite-email-popup
Version:
A polite email popup
12 lines (10 loc) • 486 B
JavaScript
import temporaryGlobals from "../../temporary-globals/temporary-globals";
import {persistentGlobals} from "../../persistent-globals/persistent-globals";
export default function closeBottomBar ({dontRecordCloseDate} = {}) {
// store date it was closed
if (!dontRecordCloseDate) {
persistentGlobals.bottomBarClosedDate = Date.now();
}
temporaryGlobals.BOTTOM_BAR_ELEM.classList.remove("show");
document.body.classList.remove(temporaryGlobals.BODY_CLASS_BOTTOM_BAR_OPEN);
}