js: Only add `.impact` to a container's content

This commit is contained in:
Johannes Meyer 2024-07-19 11:08:57 +02:00
parent 62cae50f1e
commit 97f8767970
1 changed files with 4 additions and 3 deletions

View File

@ -216,8 +216,9 @@
req.progressTimer = progressTimer;
if ($autoSubmittedBy) {
if ($autoSubmittedBy.closest('.controls').length) {
$('.content', req.$target).addClass('impact');
const $closestControls = $autoSubmittedBy.closest('.controls');
if ($closestControls.length && $closestControls[0].parentNode === req.$target[0]) {
$(':scope > .content', req.$target).addClass('impact');
} else {
req.$target.addClass('impact');
}
@ -965,7 +966,7 @@
if (req.$target.hasClass('impact')) {
req.$target.removeClass('impact');
} else {
var $impact = req.$target.find('.impact').first();
const $impact = req.$target.find(':scope > .content.impact').first();
if ($impact.length) {
$impact.removeClass('impact');
}