aboutsummaryrefslogtreecommitdiff
path: root/src/App.js
diff options
context:
space:
mode:
authorshpuld <shp@cock.li>2019-03-02 16:57:32 +0200
committershpuld <shp@cock.li>2019-03-02 16:57:32 +0200
commit1d3b1ac934e5dacb05d227ddc1ab0cbd8e16e169 (patch)
treed5846814e9cddb6edfb8b258f6e169314d97ef2b /src/App.js
parent068da3cf9f22f83da17051b8db5cde597f624fdf (diff)
start working on one tap notifications
Diffstat (limited to 'src/App.js')
-rw-r--r--src/App.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/App.js b/src/App.js
index 214e0f48..5e5b6eea 100644
--- a/src/App.js
+++ b/src/App.js
@@ -26,6 +26,7 @@ export default {
},
data: () => ({
mobileActivePanel: 'timeline',
+ notificationsOpen: false,
finderHidden: true,
supportsMask: window.CSS && window.CSS.supports && (
window.CSS.supports('mask-size', 'contain') ||
@@ -101,6 +102,9 @@ export default {
},
toggleMobileSidebar () {
this.$refs.sideDrawer.toggleDrawer()
+ },
+ toggleMobileNotifications () {
+ this.notificationsOpen = !this.notificationsOpen
}
}
}