furf/jquery-ui-touch-punch

item "jumping" up on ipad

avoliva opened this issue · 2 comments

When dragging, the dragged item sometimes jumps up from where the finger is, and it's about 2 inches above where my finger is. But the dragging still works it's just the item is out of sync I guess for whatever reason.

Having a similar issue but on Android devices and it only seems to happen on pages that have a vertical scroll. Any ideas what could be causing this?

Sorry forgot about this, I was able to fix this with this on jquery ui

helper: function(event, ui) {
    var $clone =  $(ui).clone();
    $clone .css('position','absolute');
    return $clone.get(0);
},