Browse Source

Fixed trailing slash

master
Maxim Likhachev 6 years ago committed by Maxim Likhachev
parent
commit
45085c2d0b
  1. 2
      web/tpl/page.html

2
web/tpl/page.html

@ -90,7 +90,7 @@ @@ -90,7 +90,7 @@
localStorage.setItem("glossa.info.lexis.language", lang);
window.location = path.join("/") + "/" + window.location.search;
window.location = path.join("/").replace(/\/?$/, '/') + window.location.search;
}
};

Loading…
Cancel
Save