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

Commit

Permalink
Fix regular expression (#172)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Nikonov authored and lukepfeiffer10 committed Jul 26, 2016
1 parent c3b5750 commit 5a5dc26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -84,7 +84,7 @@ In addition to customizing behaviors for a specific element, you can also custom

```javascript
app.config(['uiMask.ConfigProvider', function(uiMaskConfigProvider) {
uiMaskConfigProvider.maskDefinitions({'A': /[a-z], '*': /[a-zA-Z0-9]/});
uiMaskConfigProvider.maskDefinitions({'A': /[a-z]/, '*': /[a-zA-Z0-9]/});
uiMaskConfigProvider.clearOnBlur(false);
uiMaskConfigProvider.eventsToHandle(['input', 'keyup', 'click']);
}
Expand Down

0 comments on commit 5a5dc26

Please sign in to comment.