Skip to content

Commit

Permalink
Merge pull request #7 from phips/patch-1
Browse files Browse the repository at this point in the history
Added 'x' mask for hex character set.
  • Loading branch information
Fábio M. Costa committed Nov 11, 2011
2 parents ae7e3d5 + 09997a2 commit 24026d5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions jquery.meio.mask.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
'Z': /[A-Z]/,
'a': /[a-zA-Z]/,
'*': /[0-9a-zA-Z]/,
'@': /[0-9a-zA-ZçÇáàãâéèêíìóòôõúùü]/
'@': /[0-9a-zA-ZçÇáàãâéèêíìóòôõúùü]/,
'x': /[0-9a-fA-F]/
},

// these keys will be ignored by the mask.
Expand Down Expand Up @@ -683,4 +684,5 @@
}
});
})(jQuery);



0 comments on commit 24026d5

Please sign in to comment.