瀏覽代碼

Prevent the click event from firing on content below modal

Tusooa Zhu 3 年之前
父節點
當前提交
3502d374e3
共有 1 個文件被更改,包括 6 次插入1 次删除
  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) {