I'm using jquery ui with touch punch to get a selectable set of images to be touch enabled for mobile. I've got it working great except for one caveat is that when trying to scroll and you touch one of the images, it tries to select multiple items as per jquery ui's way of doing things. But I'm using a mouse down bind as per the example below
$(".YOUR_SELECTOR_HERE").bind("mousedown", function(e) {
e.metaKey = true;
}).selectable();
What I need to be able to do is disable jquery's multiple select when dragging and only have tap to select enabled for multiple items.
Is this possible?