From 10733923988f4bca64efa5c0acbe2c99473b26c8 Mon Sep 17 00:00:00 2001 From: Mario Date: Fri, 4 Oct 2024 06:51:15 +0000 Subject: Fix modal backdrop not removed when like/unlike from the modal (cherry picked from commit 7d41deebce656a3812cea6556123e5c5805196da) Co-authored-by: Mario --- view/js/main.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/view/js/main.js b/view/js/main.js index dfec9e0f0..1def07195 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1209,9 +1209,12 @@ function dolike(ident, verb) { else { $('#thread-wrapper-' + data.orig_id).replaceWith(data.html); } + $('#wall-item-ago-' + data.id + ' .autotime').timeago(); collapseHeight(); liking = 0; + // remove modal backdrop in case the update was triggered from a modal + $('.modal-backdrop').remove(); } }); liking = 1; -- cgit v1.2.3