Use only the first part of the path for the local storage
This commit is contained in:
parent
326cc53b8b
commit
e7a652851e
|
@ -40,7 +40,7 @@ function initWidget(inflated, deflated) {
|
||||||
if (!elInf || !elDef) {
|
if (!elInf || !elDef) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (localStorage.getItem(window.location.pathname + ":" + inflated) != "none") {
|
if (localStorage.getItem(window.location.pathname.split("/")[1] + ":" + inflated) != "none") {
|
||||||
elInf.style.display = "block";
|
elInf.style.display = "block";
|
||||||
elDef.style.display = "none";
|
elDef.style.display = "none";
|
||||||
} else {
|
} else {
|
||||||
|
@ -60,11 +60,11 @@ function openCloseWidget(inflated, deflated) {
|
||||||
if (window.getComputedStyle(elInf).display === "none") {
|
if (window.getComputedStyle(elInf).display === "none") {
|
||||||
elInf.style.display = "block";
|
elInf.style.display = "block";
|
||||||
elDef.style.display = "none";
|
elDef.style.display = "none";
|
||||||
localStorage.setItem(window.location.pathname + ":" + inflated, "block");
|
localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "block");
|
||||||
} else {
|
} else {
|
||||||
elInf.style.display = "none";
|
elInf.style.display = "none";
|
||||||
elDef.style.display = "block";
|
elDef.style.display = "block";
|
||||||
localStorage.setItem(window.location.pathname + ":" + inflated, "none");
|
localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "none");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user