In the touchEnd event handler, there is this part:
//call this on jq event so we are cross browser
if (options.preventDefaultEvents !== false) {
jqEvent.preventDefault();
}
There should be an other check for jqEvent.cancelable, too, like this:
//call this on jq event so we are cross browser
if (options.preventDefaultEvents !== false && jqEvent.cancelable !== false) {
jqEvent.preventDefault();
}
Without this check, there are several warning messages thrown in Chrome (latest version).
In the touchEnd event handler, there is this part:
There should be an other check for jqEvent.cancelable, too, like this:
Without this check, there are several warning messages thrown in Chrome (latest version).