1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-09-21 03:39:46 +00:00

Merge branch 'master' into Develop

This commit is contained in:
Ozzie Isaacs 2024-08-03 16:03:52 +02:00
commit bcf4a479ac
2 changed files with 1083 additions and 481 deletions

View File

@ -160,15 +160,18 @@ $(document).ready(function() {
$(".session").click(function() { $(".session").click(function() {
window.sessionStorage.setItem("back", window.location.pathname); window.sessionStorage.setItem("back", window.location.pathname);
window.sessionStorage.setItem("search", window.location.search);
}); });
$("#back").click(function() { $("#back").click(function() {
var loc = sessionStorage.getItem("back"); var loc = sessionStorage.getItem("back");
var param = sessionStorage.getItem("search");
if (!loc) { if (!loc) {
loc = $(this).data("back"); loc = $(this).data("back");
} }
sessionStorage.removeItem("back"); sessionStorage.removeItem("back");
window.location.href = loc; sessionStorage.removeItem("search");
window.location.href = loc + param;
}); });

File diff suppressed because it is too large Load Diff