Merge pull request '[feat] Support prefers-reduced-motion disabling auto-play of animated images (#324)' (#325) from Mergan/pleroma-fe:support-prefers-reduced-motion into develop
ci/woodpecker/push/woodpecker Pipeline was successful Details

Reviewed-on: #325
This commit is contained in:
floatingghost 2023-07-21 19:37:43 +00:00
commit a4e82f7886
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ const StillImage = {
],
data () {
return {
stopGifs: this.$store.getters.mergedConfig.stopGifs,
isAnimated: false
stopGifs: this.$store.getters.mergedConfig.stopGifs || window.matchMedia('(prefers-reduced-motion: reduce)').matches,
isAnimated: false,
}
},
computed: {