From a164f8ad959c25ee10762b89e343c12f5bdc6bc8 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 21 Feb 2019 05:53:10 +0900 Subject: [PATCH] Fix bug --- src/client/app/common/views/components/dialog.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/client/app/common/views/components/dialog.vue b/src/client/app/common/views/components/dialog.vue index 78ea4e361..a0b3baf16 100644 --- a/src/client/app/common/views/components/dialog.vue +++ b/src/client/app/common/views/components/dialog.vue @@ -128,15 +128,16 @@ export default Vue.extend({ }, close() { + this.$el.style.pointerEvents = 'none'; (this.$refs.bg as any).style.pointerEvents = 'none'; + (this.$refs.main as any).style.pointerEvents = 'none'; + anime({ targets: this.$refs.bg, opacity: 0, duration: 300, easing: 'linear' }); - - (this.$refs.main as any).style.pointerEvents = 'none'; anime({ targets: this.$refs.main, opacity: 0,