From afdcfe56b2c1e9eceb0cd90c49ca557960a1abb1 Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Wed, 8 Jan 2020 11:07:46 +0300 Subject: [PATCH] Lint fix --- src/AppTopBar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppTopBar.vue b/src/AppTopBar.vue index e24bd345c..b0221d9a8 100644 --- a/src/AppTopBar.vue +++ b/src/AppTopBar.vue @@ -140,7 +140,7 @@ export default { this.outsideClickListener = null; } }, - isOutsideTopbarMenuClicked(event, element) { + isOutsideTopbarMenuClicked(event) { return !(this.$refs.topbarMenu.isSameNode(event.target) || this.$refs.topbarMenu.contains(event.target)); } }