From 4e159f3131266c063ac3235cadfe05ec8cc6f3ab Mon Sep 17 00:00:00 2001 From: root Date: Wed, 16 Sep 2015 11:37:49 -0500 Subject: [PATCH] Removed whitespace --- src/ngTouch/directive/ngClick.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ngTouch/directive/ngClick.js b/src/ngTouch/directive/ngClick.js index ab6552399a2a..11306b180ce9 100644 --- a/src/ngTouch/directive/ngClick.js +++ b/src/ngTouch/directive/ngClick.js @@ -161,11 +161,11 @@ ngTouch.directive('ngClick', ['$parse', '$timeout', '$rootElement', // If we didn't find an allowable region, bust the click. event.stopPropagation(); event.preventDefault(); - + // Check if the target node is not of the type input. // All targets should be blurred except input to prevent the keyboard from // bouncing in and out and sometimes not showing. - if(nodeName !== 'input') { + if (nodeName !== 'input') { // Blur focused form elements event.target && event.target.blur && event.target.blur(); }