소스 검색

Do not reset touch-item if successfully swiped

Jacob Duba 4 년 전
부모
커밋
3dda84bf9a
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      ui/static/js/touch_handler.js

+ 4 - 4
ui/static/js/touch_handler.js

@@ -75,10 +75,10 @@ class TouchHandler {
 
             if (distance > 75) {
                 toggleEntryStatus(this.touch.element);
-            }
-
-            this.touch.element.style.opacity = 1;
-            this.touch.element.style.transform = "none";
+	    } else {
+                this.touch.element.style.opacity = 1;
+                this.touch.element.style.transform = "none";
+	    }
         }
 
         this.reset();