aboutsummaryrefslogtreecommitdiffhomepage
path: root/ui/static/js/app.js
diff options
context:
space:
mode:
authorGravatar Dave Z <noreply@example.com>2018-06-06 18:31:06 +0000
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-06-06 20:23:10 -0700
commit2bbe21fb89bf00bcb52369a32d992aecca07a2ab (patch)
tree6914581004eac049b9d569902a1e264016a9ad3c /ui/static/js/app.js
parent084642eb0a991b738da9c5b2bf7ae4956514f05b (diff)
Prevent items from sticking on touchend.
Diffstat (limited to 'ui/static/js/app.js')
-rw-r--r--ui/static/js/app.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/static/js/app.js b/ui/static/js/app.js
index a540b60..e616a2d 100644
--- a/ui/static/js/app.js
+++ b/ui/static/js/app.js
@@ -122,9 +122,9 @@ class TouchHandler {
if (distance > 75) {
EntryHandler.toggleEntryStatus(this.touch.element);
- this.touch.element.style.opacity = 1;
- this.touch.element.style.transform = "none";
}
+ this.touch.element.style.opacity = 1;
+ this.touch.element.style.transform = "none";
}
this.reset();