File: rules

package info (click to toggle)
jquery-goodies 12-1.1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,376 kB
  • sloc: xml: 308; makefile: 82; php: 48; sql: 39
file content (17 lines) | stat: -rw-r--r-- 416 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
Rules are symbolic characters that match a certain regular expression.
meioMask haves some defined rules but you may add yours to the rules object.

Making masks will be explained further, and you’ll understand how to glue
all this stuff :P.

meioMask defined rules:
*/

$.mask.rules =  {
	'z': /[a-z]/,
	'Z': /[A-Z]/,
	'a': /[a-zA-Z]/,
	'*': /[0-9a-zA-Z]/,
	'@': /[0-9a-zA-ZçÇáàãéèíìóòõúùü]/
};