Make lint happy

This commit is contained in:
Tusooa Zhu 2021-08-02 19:44:01 -04:00
parent 4552c28e06
commit e2f3929872
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
3 changed files with 5 additions and 7 deletions

View file

@ -16,10 +16,6 @@ library.add(
faChevronRight
)
const onlyXAxis = ([x, y]) => [x, 0]
const SCALING_RESET_MIN = 1.1
const SCALING_ENABLE_MOVE_THRESHOLD = 1
const MediaModal = {
components: {
StillImage,

View file

@ -1,11 +1,13 @@
import PinchZoom from '@kazvmoe-infra/pinch-zoom-element'
export default {
props: {
},
methods: {
setTransform ({ scale, x, y }) {
this.$el.setTransform({ scale, x, y })
}
},
created () {
// Make lint happy
(() => PinchZoom)()
}
}

View file

@ -78,7 +78,7 @@ const SwipeClick = {
swipeEndCallback: this.end,
swipeCancelCallback: this.cancel,
swipelessClickCallback: this.click
});
})
}
}