Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e324e65

Browse files
mobilabgitpetebacondarwin
authored andcommittedOct 27, 2015
Update ngClick.js
In our code we have an input element inside a label. The click on the label generates two clicks, but the second click was not recognised by angular-touch as a label click, because it only looks at the current element, instead of looking for a label in parent elements. Therefore, the second click gets busted, and clicking on the label doesn't do anything for 2500ms. I added the additional lookup for a containing label inside one of the conditions inside the onClick method. Closes angular#11577
1 parent ffb6b2f commit e324e65

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed
 

‎src/ngTouch/directive/ngClick.js

+7-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement',
144144
lastLabelClickCoordinates = null;
145145
}
146146
// remember label click coordinates to prevent click busting of trigger click event on input
147-
if (nodeName_(event.target) === 'label') {
147+
if (findUpLabel(event.target)) {
148148
lastLabelClickCoordinates = [x, y];
149149
}
150150

@@ -163,6 +163,12 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement',
163163
event.target && event.target.blur && event.target.blur();
164164
}
165165

166+
function findUpLabel(el) {
167+
while (el) {
168+
if (nodeName_(el) === 'label') return true;
169+
el = el.parentNode;
170+
}
171+
}
166172

167173
// Global touchstart handler that creates an allowable region for a click event.
168174
// This allowable region can be removed by preventGhostClick if we want to bust it.

0 commit comments

Comments
 (0)
Please sign in to comment.