diff options
Diffstat (limited to 'src/ngMobile')
| -rw-r--r-- | src/ngMobile/directive/ngClick.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ngMobile/directive/ngClick.js b/src/ngMobile/directive/ngClick.js index 51e201c2..6df71ddb 100644 --- a/src/ngMobile/directive/ngClick.js +++ b/src/ngMobile/directive/ngClick.js @@ -135,6 +135,9 @@ ngMobile.directive('ngClick', ['$parse', '$timeout', '$rootElement', // If we didn't find an allowable region, bust the click. event.stopPropagation(); event.preventDefault(); + + // Blur focused form elements + event.target && event.target.blur(); } |
