Skip to content

Commit 0cd6b32

Browse files
committed
minified files...
1 parent 1b99b52 commit 0cd6b32

File tree

11 files changed

+15
-19
lines changed

11 files changed

+15
-19
lines changed

form-validator/date.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @website http://formvalidator.net/#location-validators
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.11
13+
* @version 2.2.beta.13
1414
*/
1515
(function($) {
1616

form-validator/file.dev.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @website http://formvalidator.net/
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.11
13+
* @version 2.2.beta.13
1414
*/
1515
(function($, window) {
1616

@@ -108,7 +108,7 @@
108108
validatorFunction : function(val, $input) {
109109
var maxSize = $input.valAttr('max-size');
110110
if( !maxSize ) {
111-
console.log('Input "'+$input.attr('name')+'" is missing data-validation-max-size attribute');
111+
_log('Input "'+$input.attr('name')+'" is missing data-validation-max-size attribute');
112112
return true;
113113
} else if( !SUPPORTS_FILE_READER ) {
114114
return true; // no fallback available

form-validator/file.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

form-validator/html5.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*
1818
* @website http://formvalidator.net/
1919
* @license Dual licensed under the MIT or GPL Version 2 licenses
20-
* @version 2.2.beta.11
20+
* @version 2.2.beta.13
2121
*/
2222
(function($, window) {
2323

form-validator/jquery.form-validator.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*
66
* @website http://formvalidator.net/
77
* @license Dual licensed under the MIT or GPL Version 2 licenses
8-
* @version 2.2.beta.11
8+
* @version 2.2.beta.13
99
*/
1010
(function($) {
1111

@@ -198,7 +198,6 @@
198198
* @return {jQuery}
199199
*/
200200
$.fn.validateInputOnBlur = function(language, conf, attachKeyupEvent, eventType) {
201-
console.log(eventType);
202201
$.formUtils.eventType = eventType;
203202

204203
if( (this.valAttr('suggestion-nr') || this.valAttr('postpone') || this.hasClass('hasDatepicker')) && !window.postponedValidation ) {
@@ -887,7 +886,7 @@
887886
}
888887

889888
} else {
890-
console.warn('Using undefined validator "'+rule+'"');
889+
throw new Error('Using undefined validator "'+rule+'"');
891890
}
892891

893892
}, ' ');

form-validator/jquery.form-validator.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

form-validator/location.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @website http://formvalidator.net/#location-validators
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.11
13+
* @version 2.2.beta.13
1414
*/
1515
(function($) {
1616

form-validator/security.dev.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* - cvv
1414
*
1515
* @website http://formvalidator.net/#security-validators
16-
* @version 2.2.beta.11
16+
* @version 2.2.beta.13
1717
*/
1818
(function($, window) {
1919

@@ -388,9 +388,6 @@
388388
serverURL = conf.backendUrl;
389389
}
390390

391-
console.log('IN HERE:');
392-
console.log($.formUtils.eventType);
393-
394391
if(backendValid)
395392
return true;
396393
else if(backendInvalid)

0 commit comments

Comments
 (0)