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:
parent
7dcc72d5a0
commit
c0aa93a3c1
20
public/assets/scaffolding-min.js
vendored
20
public/assets/scaffolding-min.js
vendored
@ -75,23 +75,6 @@ var showMessage = function showMessage(m, s) {
|
|||||||
status.remove();
|
status.remove();
|
||||||
}, 1000);
|
}, 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 getURLVars = function getURLVars() {
|
||||||
var oResult = {};
|
var oResult = {};
|
||||||
if (location.search.length > 0) {
|
if (location.search.length > 0) {
|
||||||
@ -146,7 +129,7 @@ module.exports = {
|
|||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
remove: function remove(cname) {
|
remove: function remove(cname) {
|
||||||
module.exports.cookie.set(cname, "", -1);
|
module.exports.cookie.set(cname, null, new Date(null));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
oneClickSelect: function oneClickSelect(e) {
|
oneClickSelect: function oneClickSelect(e) {
|
||||||
@ -3411,7 +3394,6 @@ var flipInfoSwitch = function flipInfoSwitch(e) {
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case "breakpoints":
|
case "breakpoints":
|
||||||
console.log("here");
|
|
||||||
_core_core_js__WEBPACK_IMPORTED_MODULE_0__.cookie.set("show-breakpoints", s.getAttribute("aria-checked"), 30, "/");
|
_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");
|
document.querySelector("html").classList[s.getAttribute("aria-checked") == "true" ? "add" : "remove"]("show-breakpoints");
|
||||||
break;
|
break;
|
||||||
|
@ -71,22 +71,6 @@ const showMessage = (m, s) => {
|
|||||||
}, 1000);
|
}, 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 = () => {
|
const getURLVars = () => {
|
||||||
var oResult = {};
|
var oResult = {};
|
||||||
if (location.search.length > 0) {
|
if (location.search.length > 0) {
|
||||||
@ -146,7 +130,7 @@ module.exports = {
|
|||||||
return "";
|
return "";
|
||||||
},
|
},
|
||||||
remove: (cname) => {
|
remove: (cname) => {
|
||||||
module.exports.cookie.set(cname, "", -1);
|
module.exports.cookie.set(cname, null, new Date(null));
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
oneClickSelect: (e, t = e.currentTarget) => {
|
oneClickSelect: (e, t = e.currentTarget) => {
|
||||||
|
@ -24,6 +24,7 @@ core.init({
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// deprecated switch handler
|
// deprecated switch handler
|
||||||
const flipInfoSwitch = (e, s = e.currentTarget) => {
|
const flipInfoSwitch = (e, s = e.currentTarget) => {
|
||||||
|
|
||||||
@ -37,12 +38,10 @@ const flipInfoSwitch = (e, s = e.currentTarget) => {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case "breakpoints" :
|
case "breakpoints" :
|
||||||
console.log("here")
|
|
||||||
core.cookie.set("show-breakpoints", s.getAttribute("aria-checked"), 30, "/");
|
core.cookie.set("show-breakpoints", s.getAttribute("aria-checked"), 30, "/");
|
||||||
document.querySelector("html").classList[( s.getAttribute("aria-checked") == "true" ? "add" : "remove" )]("show-breakpoints");
|
document.querySelector("html").classList[( s.getAttribute("aria-checked") == "true" ? "add" : "remove" )]("show-breakpoints");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// create a pure JS mouse click event
|
// create a pure JS mouse click event
|
||||||
|
Loading…
Reference in New Issue
Block a user