Skip to content

Commit 65e21c2

Browse files
committed
fix(ngTouch): don't blur form elements
Form element focus should not be prevented by ng-click. The issue was introduced by angular#2989, and happens on mobile browsers that support touch events. Plunker to demonstrate the issue: http://embed.plnkr.co/CxeuWocoPE70vzrevrIi Closes angular#4030, angular#6432
1 parent 9d071b2 commit 65e21c2

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/ngTouch/directive/ngClick.js

-3
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,6 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement',
156156
// If we didn't find an allowable region, bust the click.
157157
event.stopPropagation();
158158
event.preventDefault();
159-
160-
// Blur focused form elements
161-
event.target && event.target.blur();
162159
}
163160

164161

test/ngTouch/directive/ngClickSpec.js

-12
Original file line numberDiff line numberDiff line change
@@ -274,18 +274,6 @@ describe('ngClick (touch)', function() {
274274

275275
expect($rootScope.count1).toBe(1);
276276

277-
time = 90;
278-
// Verify that it is blured so we don't get soft-keyboard
279-
element1[0].blur = jasmine.createSpy('blur');
280-
browserTrigger(element1, 'click',{
281-
keys: [],
282-
x: 10,
283-
y: 10
284-
});
285-
expect(element1[0].blur).toHaveBeenCalled();
286-
287-
expect($rootScope.count1).toBe(1);
288-
289277
time = 100;
290278
browserTrigger(element1, 'touchstart',{
291279
keys: [],

0 commit comments

Comments
 (0)