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

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 {