FIX: scope animated-images-pause to topic-post (#23561)

This was causing issues on chat which is not properly supporting this for now.
This commit is contained in:
Joffrey JAFFEUX 2023-09-13 16:20:06 +02:00 committed by GitHub
parent 8a57798419
commit ef0a049b87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -27,7 +27,9 @@ function _resumeAnimation(img) {
}
function animatedImgs() {
return document.querySelectorAll("img.animated:not(.manually-paused)");
return document.querySelectorAll(
".topic-post img.animated:not(.manually-paused)"
);
}
export default {