Fixes #20 core.cookie.remove now sets the value and the date of the date object to null which deletes the cookie.

This commit is contained in:
2024-10-18 18:39:38 -04:00
parent 7dcc72d5a0
commit c0aa93a3c1
3 changed files with 3 additions and 38 deletions

View File

@@ -71,22 +71,6 @@ const showMessage = (m, s) => {
}, 1000);
}
// const oneClickSelect = (e, t = e.currentTarget) => {
// // In here, "this" is the element
// var range, selection;
// if (window.getSelection) {
// selection = window.getSelection();
// range = document.createRange();
// range.selectNodeContents(t);
// selection.removeAllRanges();
// selection.addRange(range);
// } else if (document.body.createTextRange) {
// range = document.body.createTextRange();
// range.moveToElementText(t);
// range.select();
// }
// }
const getURLVars = () => {
var oResult = {};
if (location.search.length > 0) {
@@ -146,7 +130,7 @@ module.exports = {
return "";
},
remove: (cname) => {
module.exports.cookie.set(cname, "", -1);
module.exports.cookie.set(cname, null, new Date(null));
},
},
oneClickSelect: (e, t = e.currentTarget) => {

View File

@@ -24,6 +24,7 @@ core.init({
}
});
// deprecated switch handler
const flipInfoSwitch = (e, s = e.currentTarget) => {
@@ -37,12 +38,10 @@ const flipInfoSwitch = (e, s = e.currentTarget) => {
break;
case "breakpoints" :
console.log("here")
core.cookie.set("show-breakpoints", s.getAttribute("aria-checked"), 30, "/");
document.querySelector("html").classList[( s.getAttribute("aria-checked") == "true" ? "add" : "remove" )]("show-breakpoints");
break;
}
}
// create a pure JS mouse click event