Fixes 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:
A McIlwraith 2024-10-18 18:39:38 -04:00
parent 7dcc72d5a0
commit c0aa93a3c1
3 changed files with 3 additions and 38 deletions

View File

@ -75,23 +75,6 @@ var showMessage = function showMessage(m, s) {
status.remove();
}, 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();
// }
// }
var getURLVars = function getURLVars() {
var oResult = {};
if (location.search.length > 0) {
@ -146,7 +129,7 @@ module.exports = {
return "";
},
remove: function remove(cname) {
module.exports.cookie.set(cname, "", -1);
module.exports.cookie.set(cname, null, new Date(null));
}
},
oneClickSelect: function oneClickSelect(e) {
@ -3411,7 +3394,6 @@ var flipInfoSwitch = function flipInfoSwitch(e) {
});
break;
case "breakpoints":
console.log("here");
_core_core_js__WEBPACK_IMPORTED_MODULE_0__.cookie.set("show-breakpoints", s.getAttribute("aria-checked"), 30, "/");
document.querySelector("html").classList[s.getAttribute("aria-checked") == "true" ? "add" : "remove"]("show-breakpoints");
break;

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