Immediately clear toastr message after thumbnails are displayed on folder change

This commit is contained in:
Junior 2023-08-22 14:03:39 -04:00
parent 4b42798642
commit 498a031cab

View File

@ -21,6 +21,7 @@ function getFolderContents() {
}); });
$(".folder").click(function() { changeFolder($(this).data("name"), $(this).data("path")); }); $(".folder").click(function() { changeFolder($(this).data("name"), $(this).data("path")); });
$(".issue").click(function() { $(this).parent().addClass("readborder"); showComic($(this).data("relcomic"), $(this).data("comname")); }); $(".issue").click(function() { $(this).parent().addClass("readborder"); showComic($(this).data("relcomic"), $(this).data("comname")); });
toastr.remove();
} }
}); });
} }