diff options
| author | shpuld <shp@cock.li> | 2019-03-02 16:57:32 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2019-03-02 16:57:32 +0200 |
| commit | 1d3b1ac934e5dacb05d227ddc1ab0cbd8e16e169 (patch) | |
| tree | d5846814e9cddb6edfb8b258f6e169314d97ef2b /src/App.js | |
| parent | 068da3cf9f22f83da17051b8db5cde597f624fdf (diff) | |
start working on one tap notifications
Diffstat (limited to 'src/App.js')
| -rw-r--r-- | src/App.js | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 } } } |
