 
      
    CSS
    0
    Вклад в тег
    
      
      
    
  
  
on: {
	touchEnd: function(s,e) {
		let range = 5;
		let diff = s.touches.diff = s.isHorizontal() ? s.touches.currentX - s.touches.startX : s.touches.currentY 
                 - s.touches.startY
		if (diff < range || diff > -range) s.allowClick = true;
	}
},