From e7aed00f20f41117cdb0a980fac637f54aa08e87 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Fri, 24 Jan 2014 13:44:43 -0500 Subject: [PATCH] JSHint: Apply onvar to src files --- src/additional/cifES.js | 13 ++++++------- src/ajax.js | 5 +++-- src/core.js | 37 +++++++++++++++++++++---------------- 3 files changed, 30 insertions(+), 25 deletions(-) diff --git a/src/additional/cifES.js b/src/additional/cifES.js index 1d94f8e..3755f2c 100644 --- a/src/additional/cifES.js +++ b/src/additional/cifES.js @@ -5,9 +5,8 @@ jQuery.validator.addMethod( "cifES", function( value ) { "use strict"; - var sum, - num = [], - controlDigit; + var num = [], + controlDigit, sum, i, count, tmp, secondDigit; value = value.toUpperCase(); @@ -16,15 +15,15 @@ jQuery.validator.addMethod( "cifES", function( value ) { return false; } - for ( var i = 0; i < 9; i++ ) { + for ( i = 0; i < 9; i++ ) { num[ i ] = parseInt( value.charAt( i ), 10 ); } // Algorithm for checking CIF codes sum = num[ 2 ] + num[ 4 ] + num[ 6 ]; - for ( var count = 1; count < 8; count += 2 ) { - var tmp = ( 2 * num[ count ] ).toString(), - secondDigit = tmp.charAt( 1 ); + for ( count = 1; count < 8; count += 2 ) { + tmp = ( 2 * num[ count ] ).toString(); + secondDigit = tmp.charAt( 1 ); sum += parseInt( tmp.charAt( 0 ), 10 ) + ( secondDigit === "" ? 0 : parseInt( secondDigit, 10 ) ); } diff --git a/src/ajax.js b/src/ajax.js index 48ce4cd..31b1cc7 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -2,7 +2,8 @@ // usage: $.ajax({ mode: "abort"[, port: "uniqueport"]}); // if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort() (function($) { - var pendingRequests = {}; + var pendingRequests = {}, + ajax; // Use a prefilter if available (1.5+) if ( $.ajaxPrefilter ) { $.ajaxPrefilter(function( settings, _, xhr ) { @@ -16,7 +17,7 @@ }); } else { // Proxy ajax - var ajax = $.ajax; + ajax = $.ajax; $.ajax = function( settings ) { var mode = ( "mode" in settings ? settings : $.ajaxSettings ).mode, port = ( "port" in settings ? settings : $.ajaxSettings ).port; diff --git a/src/core.js b/src/core.js index 4277cf6..04523bf 100644 --- a/src/core.js +++ b/src/core.js @@ -122,7 +122,7 @@ $.extend($.fn, { // http://jqueryvalidation.org/rules/ rules: function( command, argument ) { var element = this[0], - settings, staticRules, existingRules, data, param; + settings, staticRules, existingRules, data, param, filtered; if ( command ) { settings = $.data(element.form, "validator").settings; @@ -143,7 +143,7 @@ $.extend($.fn, { delete staticRules[element.name]; return existingRules; } - var filtered = {}; + filtered = {}; $.each(argument.split(/\s/), function( index, method ) { filtered[method] = existingRules[method]; delete existingRules[method]; @@ -326,7 +326,8 @@ $.extend($.validator, { this.invalid = {}; this.reset(); - var groups = (this.groups = {}); + var groups = (this.groups = {}), + rules; $.each(this.settings.groups, function( key, value ) { if ( typeof value === "string" ) { value = value.split(/\s/); @@ -335,7 +336,7 @@ $.extend($.validator, { groups[name] = key; }); }); - var rules = this.settings.rules; + rules = this.settings.rules; $.each(rules, function( key, value ) { rules[key] = $.validator.normalizeRule(value); }); @@ -463,8 +464,9 @@ $.extend($.validator, { objectLength: function( obj ) { /* jshint unused: false */ - var count = 0; - for ( var i in obj ) { + var count = 0, + i; + for ( i in obj ) { count++; } return count; @@ -679,9 +681,9 @@ $.extend($.validator, { }, defaultShowErrors: function() { - var i, elements; + var i, elements, error; for ( i = 0; this.errorList[i]; i++ ) { - var error = this.errorList[i]; + error = this.errorList[i]; if ( this.settings.highlight ) { this.settings.highlight.call( this, error.element, this.settings.errorClass, this.settings.validClass ); } @@ -1098,7 +1100,8 @@ $.extend($.validator, { } var nCheck = 0, nDigit = 0, - bEven = false; + bEven = false, + n, cDigit; value = value.replace(/\D/g, ""); @@ -1108,8 +1111,8 @@ $.extend($.validator, { return false; } - for (var n = value.length - 1; n >= 0; n--) { - var cDigit = value.charAt(n); + for ( n = value.length - 1; n >= 0; n--) { + cDigit = value.charAt(n); nDigit = parseInt(cDigit, 10); if ( bEven ) { if ( (nDigit *= 2) > 9 ) { @@ -1175,7 +1178,9 @@ $.extend($.validator, { return "dependency-mismatch"; } - var previous = this.previousValue(element); + var previous = this.previousValue(element), + validator, data; + if (!this.settings.messages[element.name] ) { this.settings.messages[element.name] = {}; } @@ -1189,9 +1194,9 @@ $.extend($.validator, { } previous.old = value; - var validator = this; + validator = this; this.startRequest(element); - var data = {}; + data = {}; data[element.name] = value; $.ajax($.extend(true, { url: param, @@ -1202,11 +1207,11 @@ $.extend($.validator, { context: validator.currentForm, success: function( response ) { var valid = response === true || response === "true", - errors, message; + errors, message, submitted; validator.settings.messages[element.name].remote = previous.originalMessage; if ( valid ) { - var submitted = validator.formSubmitted; + submitted = validator.formSubmitted; validator.prepareElement(element); validator.formSubmitted = submitted; validator.successList.push(element);