Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Support Windows Phone 8 and Browser with MOVE_TOLERANCE. #10211

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion src/ngTouch/directive/ngClick.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,9 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement',
tapElement, // Used to blur the element after a tap.
startTime, // Used to check if the tap was held too long.
touchStartX,
touchStartY;
touchStartY,
clickStartX,
clickStartY;

function resetState() {
tapping = false;
Expand Down Expand Up @@ -258,13 +260,24 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement',
// - But the browser's follow-up slow click will be "busted" before it reaches this handler.
// Therefore it's safe to use this directive on both mobile and desktop.
element.on('click', function(event, touchend) {
if (!touchend) {
// If we have no touchend event, we should still check MOVE_TOLERANCE
// for standard browser clicks. Otherwise if we create directives that
// use the `swipe` service, the element will still receive clicks.
var x = event.clientX;
var y = event.clientY;
var dist = Math.sqrt(Math.pow(x - clickStartX, 2) + Math.pow(y - clickStartY, 2));
if (dist >= MOVE_TOLERANCE) return;
}
scope.$apply(function() {
clickHandler(scope, {$event: (touchend || event)});
});
});

element.on('mousedown', function(event) {
element.addClass(ACTIVE_CLASS_NAME);
clickStartX = event.clientX;
clickStartY = event.clientY;
});

element.on('mousemove mouseup', function(event) {
Expand Down
20 changes: 20 additions & 0 deletions test/ngTouch/directive/ngClickSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,26 @@ describe('ngClick (touch)', function() {


describe('click fallback', function() {
it('should not click if the click is too far away', inject(function($rootScope, $compile, $rootElement) {
element = $compile('<div ng-click="tapped = true"></div>')($rootScope);
$rootElement.append(element);
$rootScope.$digest();

expect($rootScope.tapped).toBeUndefined();

browserTrigger(element, 'mousedown',{
keys: [],
x: 10,
y: 10
});
browserTrigger(element, 'click',{
keys: [],
x: 400,
y: 400
});

expect($rootScope.tapped).toBeUndefined();
}));

it('should treat a click as a tap on desktop', inject(function($rootScope, $compile) {
element = $compile('<div ng-click="tapped = true"></div>')($rootScope);
Expand Down