Skip to content

Commit

Permalink
Add STATUS_IGNORED status
Browse files Browse the repository at this point in the history
  • Loading branch information
nghuuphuoc committed Feb 24, 2015
1 parent e4e2785 commit b5504bb
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 13 deletions.
3 changes: 2 additions & 1 deletion dist/js/formValidation.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* FormValidation (http://formvalidation.io)
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
*
* @version v0.6.2-dev, built on 2015-02-24 10:43:40 PM
* @version v0.6.2-dev, built on 2015-02-24 10:46:41 PM
* @author https://twitter.com/nghuuphuoc
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc
* @license http://formvalidation.io/license/
Expand Down Expand Up @@ -51,6 +51,7 @@ if (typeof jQuery === 'undefined') {
this.STATUS_VALIDATING = 'VALIDATING';
this.STATUS_INVALID = 'INVALID';
this.STATUS_VALID = 'VALID';
this.STATUS_IGNORED = 'IGNORED';

// Determine the event that is fired when user change the field value
// Most modern browsers supports input event except IE 7, 8.
Expand Down
4 changes: 2 additions & 2 deletions dist/js/formValidation.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/js/framework/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* FormValidation (http://formvalidation.io)
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
*
* @version v0.6.2-dev, built on 2015-02-24 10:43:40 PM
* @version v0.6.2-dev, built on 2015-02-24 10:46:41 PM
* @author https://twitter.com/nghuuphuoc
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc
* @license http://formvalidation.io/license/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/framework/bootstrap.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/framework/foundation.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* FormValidation (http://formvalidation.io)
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
*
* @version v0.6.2-dev, built on 2015-02-24 10:43:40 PM
* @version v0.6.2-dev, built on 2015-02-24 10:46:41 PM
* @author https://twitter.com/nghuuphuoc
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc
* @license http://formvalidation.io/license/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/framework/foundation.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/framework/pure.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* FormValidation (http://formvalidation.io)
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
*
* @version v0.6.2-dev, built on 2015-02-24 10:43:40 PM
* @version v0.6.2-dev, built on 2015-02-24 10:46:41 PM
* @author https://twitter.com/nghuuphuoc
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc
* @license http://formvalidation.io/license/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/framework/pure.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/framework/semantic.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* FormValidation (http://formvalidation.io)
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
*
* @version v0.6.2-dev, built on 2015-02-24 10:43:40 PM
* @version v0.6.2-dev, built on 2015-02-24 10:46:41 PM
* @author https://twitter.com/nghuuphuoc
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc
* @license http://formvalidation.io/license/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/framework/semantic.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/js/framework/uikit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* FormValidation (http://formvalidation.io)
* The best jQuery plugin to validate form fields. Support Bootstrap, Foundation, Pure, SemanticUI, UIKit and custom frameworks
*
* @version v0.6.2-dev, built on 2015-02-24 10:43:40 PM
* @version v0.6.2-dev, built on 2015-02-24 10:46:41 PM
* @author https://twitter.com/nghuuphuoc
* @copyright (c) 2013 - 2015 Nguyen Huu Phuoc
* @license http://formvalidation.io/license/
Expand Down
2 changes: 1 addition & 1 deletion dist/js/framework/uikit.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/js/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ if (typeof jQuery === 'undefined') {
this.STATUS_VALIDATING = 'VALIDATING';
this.STATUS_INVALID = 'INVALID';
this.STATUS_VALID = 'VALID';
this.STATUS_IGNORED = 'IGNORED';

// Determine the event that is fired when user change the field value
// Most modern browsers supports input event except IE 7, 8.
Expand Down

0 comments on commit b5504bb

Please sign in to comment.