diff options
| author | shpuld <shp@cock.li> | 2019-03-28 22:54:45 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-03-28 22:54:45 +0200 |
| commit | c06bcf3303d89aa44ddcdad3a9d2f723303ae3d1 (patch) | |
| tree | 1d0f1a42d9bb6c608fe59070ab6a801e6b5d245a /src/components/mobile_nav/mobile_nav.vue | |
| parent | 31010779f6cc1abdd18fa117c0832e20623e1624 (diff) | |
add gesture to close notifications drawer
Diffstat (limited to 'src/components/mobile_nav/mobile_nav.vue')
| -rw-r--r-- | src/components/mobile_nav/mobile_nav.vue | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index 39622fad..5fa41638 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -1,5 +1,5 @@ <template> - <nav class='nav-bar container asd' id="nav"> + <nav class='nav-bar container' id="nav"> <div class='mobile-inner-nav' @click="scrollToTop()"> <div class='item'> <a href="#" class="mobile-nav-button" @click.stop.prevent="toggleMobileSidebar()"> @@ -15,7 +15,12 @@ </div> </div> <SideDrawer ref="sideDrawer" :logout="logout"/> - <div v-if="currentUser" class="mobile-notifications-drawer" :class="{ 'closed': !notificationsOpen }"> + <div v-if="currentUser" + class="mobile-notifications-drawer" + :class="{ 'closed': !notificationsOpen }" + @touchstart="notificationsTouchStart" + @touchmove="notificationsTouchMove" + > <div class="mobile-notifications-header"> <span class="title">{{$t('notifications.notifications')}}</span> <a class="mobile-nav-button" @click.stop.prevent="closeMobileNotifications()"> |
