diff options
| author | Hunternif | 2019-04-11 07:12:45 +0700 |
|---|---|---|
| committer | Hunternif | 2019-04-11 07:12:45 +0700 |
| commit | dd7bcdb242a44aa13388197a9c0be1c83969112d (patch) | |
| tree | 5a5085eeb3c61a3daf869108b9aa9eee7d9e0b07 /client | |
| parent | 773ae959998427d81bd14b694931cc85d394086d (diff) | |
Reverse touch swipe direction
Diffstat (limited to 'client')
| -rw-r--r-- | client/js/views/post_main_view.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/js/views/post_main_view.js b/client/js/views/post_main_view.js index 01639ea..1dc0860 100644 --- a/client/js/views/post_main_view.js +++ b/client/js/views/post_main_view.js @@ -91,12 +91,12 @@ class PostMainView { postContainerNode, () => { if (!ctx.editMode) { - showPreviousImage() + showNextImage() } }, () => { if (!ctx.editMode) { - showNextImage() + showPreviousImage() } } ) |