aboutsummaryrefslogtreecommitdiff
path: root/src/components/timeline_menu/timeline_menu.js
diff options
context:
space:
mode:
authorShpuld Shpuldson <shp@cock.li>2020-12-03 10:07:42 +0200
committerShpuld Shpuldson <shp@cock.li>2020-12-03 10:07:42 +0200
commitfa01030641de7be89206787f5e364318086e8524 (patch)
tree5bbb3f698c32865799e6aea05c550de95a49a468 /src/components/timeline_menu/timeline_menu.js
parentf4b18df644907090516bf19c8f6c7b78e0b2bb43 (diff)
make click blocking actually work
Diffstat (limited to 'src/components/timeline_menu/timeline_menu.js')
-rw-r--r--src/components/timeline_menu/timeline_menu.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/timeline_menu/timeline_menu.js b/src/components/timeline_menu/timeline_menu.js
index ef8a5813..8d6a58b1 100644
--- a/src/components/timeline_menu/timeline_menu.js
+++ b/src/components/timeline_menu/timeline_menu.js
@@ -59,6 +59,14 @@ const TimelineMenu = {
this.isOpen = true
}, 25)
},
+ blockOpen (event) {
+ // For the blank area inside the button element.
+ // Just setting @click.stop="" makes unintuitive behavior when
+ // menu is open and clicking on the blank area doesn't close it.
+ if (!this.isOpen) {
+ event.stopPropagation()
+ }
+ },
timelineName () {
const route = this.$route.name
if (route === 'tag-timeline') {