This repository was archived by the owner on Apr 12, 2024. It is now read-only.
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
angular-touch with jQuery fails to "fastclick" #4001
Closed
Description
If jQuery is loaded before AngularJS it uses it and fails to get proper touches/changedTouches properties from TouchEvent in
angular-touch.js:1.2-RC2
353:element.on('touchstart', function(event) {
380:element.on('touchend', function(event) {
adding
event = event.originalEvent;
solves the issue