Skip to content

Commit

Permalink
added 'á' symbol to word boundary regexp, fixes t1m0n#92
Browse files Browse the repository at this point in the history
  • Loading branch information
t1m0n committed Aug 11, 2016
1 parent ea1806c commit 42f6d4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/js/datepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@
},

_getWordBoundaryRegExp: function (sign) {
return new RegExp('\\b(?=[a-zA-Z0-9äöüßÄÖÜ<])' + sign + '(?![>a-zA-Z0-9äöüßÄÖÜ])');
return new RegExp('\\b(?=[a-zA-Z0-9áäöüúÁßÉÄÖÜÚ<])' + sign + '(?![>a-zA-Z0-9áäöüÁßÉÄÖÜÚ])');
},

selectDate: function (date) {
Expand Down
Loading

0 comments on commit 42f6d4c

Please sign in to comment.