onMouseDown: function(e) {
if (e.button == 0) {
if (e.target.tagName == "A") e.preventDefault();
$body
.on("mousemove.sm", $.proxy(this, "onTouchMove"))
.on("mouseup.sm", $.proxy(this, "onMouseUp"));
}
},
onMouseUp: function(e) {
if (e.button == 0) {
$body.off("mousemove.sm mouseup.sm");
this.onTouchEnd(e);
}
},
оказыватся дело было в стилях
text-owerflow