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

Commit 4e159f3

Browse files
author
root
committed
Removed whitespace
1 parent 1fe9976 commit 4e159f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ngTouch/directive/ngClick.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -161,11 +161,11 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement',
161161
// If we didn't find an allowable region, bust the click.
162162
event.stopPropagation();
163163
event.preventDefault();
164-
164+
165165
// Check if the target node is not of the type input.
166166
// All targets should be blurred except input to prevent the keyboard from
167167
// bouncing in and out and sometimes not showing.
168-
if(nodeName !== 'input') {
168+
if (nodeName !== 'input') {
169169
// Blur focused form elements
170170
event.target && event.target.blur && event.target.blur();
171171
}

0 commit comments

Comments
 (0)