Przeglądaj źródła

Prevent the click event from firing on content below modal

Tusooa Zhu 3 lat temu
rodzic
commit
3502d374e3
1 zmienionych plików z 6 dodań i 1 usunięć
  1. 6 1
      src/components/media_modal/media_modal.js

+ 6 - 1
src/components/media_modal/media_modal.js

@@ -70,7 +70,12 @@ const MediaModal = {
       return fileTypeService.fileType(media.mimetype)
     },
     hide () {
-      this.$store.dispatch('closeMediaViewer')
+      // HACK: Closing immediately via a touch will cause the click
+      // to be processed on the content below the overlay
+      const transitionTime = 100 // ms
+      setTimeout(() => {
+        this.$store.dispatch('closeMediaViewer')
+      }, transitionTime)
     },
     goPrev () {
       if (this.canNavigate) {