Simplified and fixed and/or oopsie
ci/woodpecker/pr/woodpecker Pipeline was successful Details

This commit is contained in:
David 2023-07-20 17:18:59 -07:00
parent e2125c57d6
commit 91eab22d77
1 changed files with 2 additions and 6 deletions

View File

@ -11,17 +11,13 @@ const StillImage = {
], ],
data () { data () {
return { return {
stopGifs: this.$store.getters.mergedConfig.stopGifs, stopGifs: this.$store.getters.mergedConfig.stopGifs || window.matchMedia('(prefers-reduced-motion: reduce)').matches,
isAnimated: false, isAnimated: false,
prefersReducedMotion: true
} }
}, },
created () {
this.prefersReducedMotion = window.matchMedia('(prefers-reduced-motion: reduce)').matches
},
computed: { computed: {
animated () { animated () {
return this.stopGifs && this.isAnimated && this.prefersReducedMotion return this.stopGifs && this.isAnimated
}, },
style () { style () {
const appendPx = (str) => /\d$/.test(str) ? str + 'px' : str const appendPx = (str) => /\d$/.test(str) ? str + 'px' : str