Skip to content

Commit b54f292

Browse files
committed
some cleanup
1 parent 2bad13d commit b54f292

11 files changed

+14
-17
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.85
13+
* @version 2.2.beta.86
1414
*/
1515
(function($) {
1616

form-validator/file.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/
1212
* @license Dual licensed under the MIT or GPL Version 2 licenses
13-
* @version 2.2.beta.85
13+
* @version 2.2.beta.86
1414
*/
1515
(function($, window) {
1616

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.85
20+
* @version 2.2.beta.86
2121
*/
2222
(function($, window) {
2323

form-validator/jquery.form-validator.js

Lines changed: 1 addition & 4 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.85
8+
* @version 2.2.beta.86
99
*/
1010
(function ($) {
1111

@@ -77,8 +77,6 @@
7777
$found.html(mess);
7878
}
7979
} else {
80-
console.log(mess);
81-
alert('This is mess da '+ mess );
8280
var $mess = $('<div class="' + conf.errorMessageClass + '">' + mess + '</div>');
8381
$mess[0].inputReferer = $input[0];
8482
$messageContainer.prepend($mess);
@@ -1671,7 +1669,6 @@
16711669
if( !isValid ) {
16721670
var _triggerOnBlur = function() {
16731671
$checkBoxes.unbind('click', _triggerOnBlur);
1674-
console.log('in heresss');
16751672
$checkBoxes.filter('*[data-validation]').eq(0).validateInputOnBlur(lang, conf, false, 'blur');
16761673
};
16771674
//$checkBoxes.bind('click', _triggerOnBlur);

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

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

form-validator/jsconf.dev.js

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

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.85
13+
* @version 2.2.beta.86
1414
*/
1515
(function($) {
1616

form-validator/security.dev.js

Lines changed: 3 additions & 3 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.85
16+
* @version 2.2.beta.86
1717
*/
1818
(function($, window) {
1919

@@ -46,7 +46,7 @@
4646
if (confInput) {
4747
conf = confInput.val();
4848
} else {
49-
console.warn('Could not find an input with name "'+confInputName+'"');
49+
alert('Could not find an input with name "'+confInputName+'"');
5050
}
5151

5252
return value === conf;
@@ -89,7 +89,7 @@
8989
hasValidLength = true;
9090
return false;
9191
}
92-
} else {
92+
} else if( window.console ) {
9393
console.warn('Use of unknown credit card "'+cardName+'"');
9494
}
9595
});

form-validator/security.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/sweden.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @website http://formvalidator.net/#swedish-validators
1515
* @license Dual licensed under the MIT or GPL Version 2 licenses
16-
* @version 2.2.beta.85
16+
* @version 2.2.beta.86
1717
*/
1818
(function($, window) {
1919

form-validator/uk.dev.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*
1010
* @website http://formvalidator.net/#uk-validators
1111
* @license Dual licensed under the MIT or GPL Version 2 licenses
12-
* @version 2.2.beta.85
12+
* @version 2.2.beta.86
1313
*/
1414
$.formUtils.addValidator({
1515
name : 'ukvatnumber',

0 commit comments

Comments
 (0)