diff options
| author | shpuld <shp@cock.li> | 2018-12-29 12:44:21 +0200 |
|---|---|---|
| committer | shpuld <shp@cock.li> | 2018-12-29 12:44:21 +0200 |
| commit | 747e4090cabfda353e76c9a45def70bef8c297e5 (patch) | |
| tree | dc9fa48a834b50810e655d227f9bcbacf1bf1ad0 /src/components/side_drawer/side_drawer.js | |
| parent | 650655709dd617a558709ffbf8911f05f7c17267 (diff) | |
Cleanup and remove divider element in side drawer
Diffstat (limited to 'src/components/side_drawer/side_drawer.js')
| -rw-r--r-- | src/components/side_drawer/side_drawer.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/side_drawer/side_drawer.js b/src/components/side_drawer/side_drawer.js index 82d6d209..538b919d 100644 --- a/src/components/side_drawer/side_drawer.js +++ b/src/components/side_drawer/side_drawer.js @@ -1,6 +1,7 @@ import UserCardContent from '../user_card_content/user_card_content.vue' import { unseenNotificationsFromStore } from '../../services/notification_utils/notification_utils' +// TODO: separate touch gesture stuff into their own utils if more components want them const deltaCoord = (oldCoord, newCoord) => [newCoord[0] - oldCoord[0], newCoord[1] - oldCoord[1]] const touchEventCoord = e => ([e.touches[0].screenX, e.touches[0].screenY]) |
