diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-02-21 05:53:10 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-02-21 05:53:10 +0900 |
| commit | a164f8ad959c25ee10762b89e343c12f5bdc6bc8 (patch) | |
| tree | b3cecf78daa41f13bf6d08eab1c4223195131a90 /src/client/app/common | |
| parent | アカウント削除時にサインイン履歴も削除するように (diff) | |
| download | misskey-a164f8ad959c25ee10762b89e343c12f5bdc6bc8.tar.gz misskey-a164f8ad959c25ee10762b89e343c12f5bdc6bc8.tar.bz2 misskey-a164f8ad959c25ee10762b89e343c12f5bdc6bc8.zip | |
Fix bug
Diffstat (limited to 'src/client/app/common')
| -rw-r--r-- | src/client/app/common/views/components/dialog.vue | 5 |
1 files 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 78ea4e3610..a0b3baf161 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, |