From 9abdb0ea7b77f4f37763b661ed0897b0c1d24b56 Mon Sep 17 00:00:00 2001 From: Junior Date: Sun, 13 Apr 2025 14:33:23 -0400 Subject: [PATCH] Remove debug comment around toast clearing. --- js/comics.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/comics.js b/js/comics.js index dc4c799..26aa72f 100644 --- a/js/comics.js +++ b/js/comics.js @@ -30,7 +30,7 @@ function getFolderContents() { }); $(".folder").click(function() { changeFolder($(this).data("name"), $(this).data("path")); }); $(".issue").click(function() { $(this).parent().addClass("readborder"); showComic($(this).data("relcomic"), $(this).data("comname")); }); - //toastr.remove(); + toastr.remove(); } }); }