// Function to open the modal BULMA function openModal(modid) { // Add is-active class on the modal document.getElementById(modid).classList.add("is-active"); } // Function to close the modal function closeModal(modid) { document.getElementById(modid).classList.remove("is-active"); } // Add event listeners to close the modal // whenever user click outside modal document.querySelectorAll( ".modal-background, .modal-close,.modal-card-head .delete, .modal-card-foot .button" ).forEach(($el) => { const $modal = $el.closest(".modal"); $el.addEventListener("click", () => { // Remove the is-active class from the modal $modal.classList.remove("is-active"); }); }); // Adding keyboard event listeners to close the modal document.addEventListener("keydown", (event) => { const e = event || window.event; if (e.keyCode === 27) { // Using escape key closeModal(modid); } }); // Add a keyboard event to close all modals document.addEventListener('keydown', (event) => { if(event.key === "Escape") { closeAllModals(); } }); /*! skinny.js v0.1.0 | Copyright 2013 Vistaprint | vistaprint.github.io/SkinnyJS/LICENSE http://vistaprint.github.io/SkinnyJS/download-builder.html?modules=jquery.cookies*/ !function(e){e.cookies={};var o,n=function(e){return e?(e=e.toString(),e=(e=encodeURIComponent(e)).replace(/\+/gi,"%2B").replace(/\%20/gi,"+")):""},i=function(e){if(!e)return"";e=(e=e.toString()).replace(/\+/gi,"%20").replace(/\%2B/gi,"+");try{return decodeURIComponent(e)}catch(o){return e}},t={domain:null,path:"/",permanentDate:(o=new Date,o.setFullYear(o.getFullYear()+1),o.toUTCString()),watcher:e.noop},a=t;e.cookies.setDefaults=function(o){a=e.extend({},t,o)};var r=function(e,o){return o||a[e]};e.cookies.enabled=function(){return e.cookies.set("cookietest","value"),"value"==e.cookies.get("cookietest")&&(e.cookies.remove("cookietest"),!0)},e.cookies.get=function(e,o){var n=(new s)[e];return n?o?n.subCookies&&n.subCookies[o]||null:n.subCookies?n.subCookies:n.value||"":null},e.cookies.set=function(e,o,n,i,t){var a,l,c=e;"object"==typeof e&&(c=e.name,o=e.value,n=e.domain,i=e.permanent,a=e.path,t=e.clearExistingSubCookies||e.clearExisting),"object"==typeof o&&null!==o&&(l=o,o=null);var v=(new s)[c];if(v||((v=new u).name=c),v.value=o,l)if(t||!v.subCookies)v.subCookies=l;else for(var f in l)l.hasOwnProperty(f)&&(v.subCookies[f]=l[f]);v.domain=r("domain",n),v.path=r("path",a),v.isPermanent=!!i,v.save()},e.cookies.remove=function(e,o,i){var t=n(e)+"=a; path="+r("path",i)+"; expires=Wed, 17 Jan 1979 07:01:00 GMT";(o=r("domain",o))&&(t+="; domain="+o),a.watcher(t),document.cookie=t};var s=function(){for(var e=document.cookie.toString().split(";"),o=e.length,n=0;n