Skip to content
Snippets Groups Projects
Commit 0286e102 authored by HJ's avatar HJ :fire:
Browse files

fix cursor on desktop, add modal link on mobile

parent 7951192c
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@
@click.stop.native
/>
<a
href="#"
class="mobile-hidden"
@click.stop="openSettingsModal"
>
......
......@@ -62,7 +62,10 @@ const SideDrawer = {
},
touchMove (e) {
GestureService.updateSwipe(e, this.closeGesture)
}
},
openSettingsModal () {
this.$store.dispatch('openSettingsModal')
},
}
}
......
......@@ -122,9 +122,12 @@
</router-link>
</li>
<li @click="toggleDrawer">
<router-link :to="{ name: 'settings' }">
<a
href="#"
@click.stop="openSettingsModal"
>
<i class="button-icon icon-cog" /> {{ $t("settings.settings") }}
</router-link>
</a>
</li>
<li @click="toggleDrawer">
<router-link :to="{ name: 'about'}">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment