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

Commit 5a5dc26

Browse files
Andrey Nikonovlukepfeiffer10
authored andcommitted
Fix regular expression (#172)
1 parent c3b5750 commit 5a5dc26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ In addition to customizing behaviors for a specific element, you can also custom
8484

8585
```javascript
8686
app.config(['uiMask.ConfigProvider', function(uiMaskConfigProvider) {
87-
uiMaskConfigProvider.maskDefinitions({'A': /[a-z], '*': /[a-zA-Z0-9]/});
87+
uiMaskConfigProvider.maskDefinitions({'A': /[a-z]/, '*': /[a-zA-Z0-9]/});
8888
uiMaskConfigProvider.clearOnBlur(false);
8989
uiMaskConfigProvider.eventsToHandle(['input', 'keyup', 'click']);
9090
}

0 commit comments

Comments
 (0)