mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
no ticket: remove and enforce unused vars in jshint
This commit is contained in:
parent
3bfd158784
commit
16d996ba0c
@ -11,6 +11,7 @@
|
||||
"sub": true,
|
||||
"trailing": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"wsh": true
|
||||
},
|
||||
"globals": {
|
||||
|
@ -81,7 +81,7 @@ var
|
||||
jQuery.fn = jQuery.prototype = {
|
||||
constructor: jQuery,
|
||||
init: function( selector, context, rootjQuery ) {
|
||||
var match, elem, ret, doc;
|
||||
var match, elem, doc;
|
||||
|
||||
// Handle $(""), $(null), $(undefined), $(false)
|
||||
if ( !selector ) {
|
||||
|
@ -18,9 +18,7 @@ var curCSS, iframe, iframeDoc,
|
||||
},
|
||||
|
||||
cssExpand = [ "Top", "Right", "Bottom", "Left" ],
|
||||
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
|
||||
|
||||
eventsToggle = jQuery.fn.toggle;
|
||||
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
|
||||
|
||||
// return a css property mapped to a potentially vendor prefixed property
|
||||
function vendorPropName( style, name ) {
|
||||
@ -113,7 +111,7 @@ jQuery.fn.extend({
|
||||
hide: function() {
|
||||
return showHide( this );
|
||||
},
|
||||
toggle: function( state, fn2 ) {
|
||||
toggle: function( state ) {
|
||||
var bool = typeof state === "boolean";
|
||||
|
||||
return this.each(function() {
|
||||
|
3
src/effects.js
vendored
3
src/effects.js
vendored
@ -73,7 +73,6 @@ function createTweens( animation, props ) {
|
||||
function Animation( elem, properties, options ) {
|
||||
var result,
|
||||
index = 0,
|
||||
tweenerIndex = 0,
|
||||
length = animationPrefilters.length,
|
||||
deferred = jQuery.Deferred().always( function() {
|
||||
// don't match elem in the :animated selector
|
||||
@ -108,7 +107,7 @@ function Animation( elem, properties, options ) {
|
||||
startTime: fxNow || createFxNow(),
|
||||
duration: options.duration,
|
||||
tweens: [],
|
||||
createTween: function( prop, end, easing ) {
|
||||
createTween: function( prop, end ) {
|
||||
var tween = jQuery.Tween( elem, animation.opts, prop, end,
|
||||
animation.opts.specialEasing[ prop ] || animation.opts.easing );
|
||||
animation.tweens.push( tween );
|
||||
|
@ -357,7 +357,7 @@ jQuery.event = {
|
||||
// Make a writable jQuery.Event from the native event object
|
||||
event = jQuery.event.fix( event || window.event );
|
||||
|
||||
var i, j, cur, ret, selMatch, matched, matches, handleObj, sel, related,
|
||||
var i, j, cur, ret, selMatch, matched, matches, handleObj, sel,
|
||||
handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []),
|
||||
delegateCount = handlers.delegateCount,
|
||||
args = core_slice.call( arguments ),
|
||||
@ -704,8 +704,7 @@ jQuery.each({
|
||||
var ret,
|
||||
target = this,
|
||||
related = event.relatedTarget,
|
||||
handleObj = event.handleObj,
|
||||
selector = handleObj.selector;
|
||||
handleObj = event.handleObj;
|
||||
|
||||
// For mousenter/leave call the handler if related is outside the target.
|
||||
// NB: No relatedTarget if the mouse left/entered the browser window
|
||||
|
@ -650,7 +650,7 @@ jQuery.extend({
|
||||
},
|
||||
|
||||
clean: function( elems, context, fragment, scripts ) {
|
||||
var i, j, elem, tag, wrap, depth, div, hasBody, tbody, len, handleScript, jsTags,
|
||||
var i, j, elem, tag, wrap, depth, div, hasBody, tbody, handleScript, jsTags,
|
||||
safe = context === document && safeFragment,
|
||||
ret = [];
|
||||
|
||||
|
@ -23,7 +23,7 @@ jQuery.fn.extend({
|
||||
return val == null ?
|
||||
null :
|
||||
jQuery.isArray( val ) ?
|
||||
jQuery.map( val, function( val, i ){
|
||||
jQuery.map( val, function( val ){
|
||||
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
|
||||
}) :
|
||||
{ name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
|
||||
|
@ -271,7 +271,7 @@ function winnow( elements, qualifier, keep ) {
|
||||
});
|
||||
|
||||
} else if ( qualifier.nodeType ) {
|
||||
return jQuery.grep(elements, function( elem, i ) {
|
||||
return jQuery.grep(elements, function( elem ) {
|
||||
return ( elem === qualifier ) === keep;
|
||||
});
|
||||
|
||||
@ -287,7 +287,7 @@ function winnow( elements, qualifier, keep ) {
|
||||
}
|
||||
}
|
||||
|
||||
return jQuery.grep(elements, function( elem, i ) {
|
||||
return jQuery.grep(elements, function( elem ) {
|
||||
return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user