mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
@@ -511,7 +511,7 @@ function tapActiveElement(ele) {
|
||||
}
|
||||
|
||||
function tapHasPointerMoved(endEvent) {
|
||||
if(!endEvent || !tapPointerStart || ( tapPointerStart.x === 0 && tapPointerStart.y === 0 )) {
|
||||
if(!endEvent || endEvent.target.nodeType !== 1 || !tapPointerStart || ( tapPointerStart.x === 0 && tapPointerStart.y === 0 )) {
|
||||
return false;
|
||||
}
|
||||
var endCoordinates = getPointerCoordinates(endEvent);
|
||||
|
||||
Reference in New Issue
Block a user