Skip to content
This repository was archived by the owner on Sep 8, 2020. It is now read-only.

Commit 61ae05e

Browse files
committed
Merge pull request #115 from lukepfeiffer10/master
Fix IE 9,10,11 tab issue
2 parents 9a4721e + e526fc3 commit 61ae05e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ angular.module('ui.mask', [])
502502
oldSelectionLength = getSelectionLength(this);
503503

504504
// These events don't require any action
505-
if (isSelection || (isSelected && (eventType === 'click' || eventType === 'keyup'))) {
505+
if (isSelection || (isSelected && (eventType === 'click' || eventType === 'keyup' || eventType === 'focus'))) {
506506
return;
507507
}
508508

0 commit comments

Comments
 (0)