diff options
author | Mario <mario@mariovavti.com> | 2024-10-04 06:51:15 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-04 06:51:15 +0000 |
commit | 10733923988f4bca64efa5c0acbe2c99473b26c8 (patch) | |
tree | 3d173f3416c4dad3a7a1030452d77469bbdb2dac | |
parent | 76064dbb33aeb75b910cacd6c6157642b5a0c3e4 (diff) | |
download | volse-hubzilla-10733923988f4bca64efa5c0acbe2c99473b26c8.tar.gz volse-hubzilla-10733923988f4bca64efa5c0acbe2c99473b26c8.tar.bz2 volse-hubzilla-10733923988f4bca64efa5c0acbe2c99473b26c8.zip |
Fix modal backdrop not removed when like/unlike from the modal
(cherry picked from commit 7d41deebce656a3812cea6556123e5c5805196da)
Co-authored-by: Mario <mario@mariovavti.com>
-rw-r--r-- | view/js/main.js | 3 |
1 files changed, 3 insertions, 0 deletions
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; |