Merge pull request #8115 from annando/path

Use only the first part of the path for the local storage
This commit is contained in:
Hypolite Petovan 2020-01-14 08:22:07 -05:00 committed by GitHub
commit 4a5a74b674
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ function initWidget(inflated, deflated) {
if (!elInf || !elDef) {
return;
}
if (localStorage.getItem(window.location.pathname + ":" + inflated) != "none") {
if (localStorage.getItem(window.location.pathname.split("/")[1] + ":" + inflated) != "none") {
elInf.style.display = "block";
elDef.style.display = "none";
} else {
@ -60,11 +60,11 @@ function openCloseWidget(inflated, deflated) {
if (window.getComputedStyle(elInf).display === "none") {
elInf.style.display = "block";
elDef.style.display = "none";
localStorage.setItem(window.location.pathname + ":" + inflated, "block");
localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "block");
} else {
elInf.style.display = "none";
elDef.style.display = "block";
localStorage.setItem(window.location.pathname + ":" + inflated, "none");
localStorage.setItem(window.location.pathname.split("/")[1] + ":" + inflated, "none");
}
}