1
0
Fork 0
mirror of https://github.com/miniflux/v2.git synced 2025-08-06 17:41:00 +00:00

Prevent items from sticking on touchend.

This commit is contained in:
Dave Z 2018-06-06 18:31:06 +00:00 committed by Frédéric Guillot
parent 084642eb0a
commit 2bbe21fb89
2 changed files with 6 additions and 5 deletions

View file

@ -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();