File tree 16 files changed +33
-0
lines changed
16 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a credit card number.
7
7
*
8
+ * http://jqueryvalidation.org/creditcard-method/
9
+ * based on http://en.wikipedia.org/wiki/Luhn/
10
+ *
8
11
* `creditcard`
9
12
*/
10
13
class Creditcard extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a date.
7
7
*
8
+ * http://jqueryvalidation.org/date-method/
9
+ *
8
10
* `date`
9
11
*/
10
12
class Date extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require an ISO date.
7
7
*
8
+ * http://jqueryvalidation.org/dateISO-method/
9
+ *
8
10
* `dateISO`
9
11
*/
10
12
class DateISO extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require digits only.
7
7
*
8
+ * http://jqueryvalidation.org/digits-method/
9
+ *
8
10
* `digits`
9
11
*/
10
12
class Digits extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a valid email.
7
7
*
8
+ * http://jqueryvalidation.org/email-method/
9
+ *
8
10
* `email`
9
11
*/
10
12
class Email extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Requires the element to be the same as another one.
7
7
*
8
+ * http://jqueryvalidation.org/equalTo-method/
9
+ *
8
10
* `equalTo`
9
11
*/
10
12
class EqualTo extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a given maximum.
7
7
*
8
+ * http://jqueryvalidation.org/max-method/
9
+ *
8
10
* `max`
9
11
*/
10
12
class Max extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a given maxmimum length.
7
7
*
8
+ * http://jqueryvalidation.org/maxlength-method/
9
+ *
8
10
* `maxlength`
9
11
*/
10
12
class Maxlength extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a given minimum.
7
7
*
8
+ * http://jqueryvalidation.org/min-method/
9
+ *
8
10
* `min`
9
11
*/
10
12
class Min extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a given minimum length.
7
7
*
8
+ * http://jqueryvalidation.org/minlength-method/
9
+ *
8
10
* `minlength`
9
11
*/
10
12
class Minlength extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a decimal number.
7
7
*
8
+ * http://jqueryvalidation.org/number-method/
9
+ *
8
10
* `number`
9
11
*/
10
12
class Number extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a given value range.
7
7
*
8
+ * http://jqueryvalidation.org/range-method/
9
+ *
8
10
* `range`
9
11
*/
10
12
class Range extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a given value range.
7
7
*
8
+ * http://jqueryvalidation.org/rangelength-method/
9
+ *
8
10
* `rangelength`
9
11
*/
10
12
class Rangelength extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Requests a resource to check the element for validity.
7
7
*
8
+ * http://jqueryvalidation.org/remote-method/
9
+ *
8
10
* `remote`
9
11
*/
10
12
class Remote extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element required.
7
7
*
8
+ * http://jqueryvalidation.org/required-method/
9
+ *
8
10
* `required`
9
11
*/
10
12
class Required extends Base
Original file line number Diff line number Diff line change 5
5
/**
6
6
* Makes the element require a valid url
7
7
*
8
+ * http://jqueryvalidation.org/url-method/
9
+ *
8
10
* `url`
9
11
*/
10
12
class Url extends Base
You can’t perform that action at this time.
0 commit comments