Преглед на файлове

Reset position on swipe end even if we cannot navigate

Tusooa Zhu преди 3 години
родител
ревизия
839627ffc4
променени са 1 файла, в които са добавени 2 реда и са изтрити 5 реда
  1. 2 5
      src/components/media_modal/media_modal.js

+ 2 - 5
src/components/media_modal/media_modal.js

@@ -81,7 +81,6 @@ const MediaModal = {
           this.loading = true
         }
         this.$store.dispatch('setCurrentMedia', newMedia)
-        this.$refs.pinchZoom.setTransform({ scale: 1, x: 0, y: 0 })
       }
     },
     goNext () {
@@ -92,7 +91,6 @@ const MediaModal = {
           this.loading = true
         }
         this.$store.dispatch('setCurrentMedia', newMedia)
-        this.$refs.pinchZoom.setTransform({ scale: 1, x: 0, y: 0 })
       }
     },
     onImageLoaded () {
@@ -103,9 +101,8 @@ const MediaModal = {
     },
     handleSwipeEnd (sign) {
       console.log('handleSwipeEnd:', sign)
-      if (sign === 0) {
-        this.$refs.pinchZoom.setTransform({ scale: 1, x: 0, y: 0 })
-      } else if (sign > 0) {
+      this.$refs.pinchZoom.setTransform({ scale: 1, x: 0, y: 0 })
+      if (sign > 0) {
         this.goNext()
       } else {
         this.goPrev()