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,
|
"sub": true,
|
||||||
"trailing": true,
|
"trailing": true,
|
||||||
"undef": true,
|
"undef": true,
|
||||||
|
"unused": true,
|
||||||
"wsh": true
|
"wsh": true
|
||||||
},
|
},
|
||||||
"globals": {
|
"globals": {
|
||||||
|
@ -81,7 +81,7 @@ var
|
|||||||
jQuery.fn = jQuery.prototype = {
|
jQuery.fn = jQuery.prototype = {
|
||||||
constructor: jQuery,
|
constructor: jQuery,
|
||||||
init: function( selector, context, rootjQuery ) {
|
init: function( selector, context, rootjQuery ) {
|
||||||
var match, elem, ret, doc;
|
var match, elem, doc;
|
||||||
|
|
||||||
// Handle $(""), $(null), $(undefined), $(false)
|
// Handle $(""), $(null), $(undefined), $(false)
|
||||||
if ( !selector ) {
|
if ( !selector ) {
|
||||||
|
@ -18,9 +18,7 @@ var curCSS, iframe, iframeDoc,
|
|||||||
},
|
},
|
||||||
|
|
||||||
cssExpand = [ "Top", "Right", "Bottom", "Left" ],
|
cssExpand = [ "Top", "Right", "Bottom", "Left" ],
|
||||||
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ],
|
cssPrefixes = [ "Webkit", "O", "Moz", "ms" ];
|
||||||
|
|
||||||
eventsToggle = jQuery.fn.toggle;
|
|
||||||
|
|
||||||
// return a css property mapped to a potentially vendor prefixed property
|
// return a css property mapped to a potentially vendor prefixed property
|
||||||
function vendorPropName( style, name ) {
|
function vendorPropName( style, name ) {
|
||||||
@ -113,7 +111,7 @@ jQuery.fn.extend({
|
|||||||
hide: function() {
|
hide: function() {
|
||||||
return showHide( this );
|
return showHide( this );
|
||||||
},
|
},
|
||||||
toggle: function( state, fn2 ) {
|
toggle: function( state ) {
|
||||||
var bool = typeof state === "boolean";
|
var bool = typeof state === "boolean";
|
||||||
|
|
||||||
return this.each(function() {
|
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 ) {
|
function Animation( elem, properties, options ) {
|
||||||
var result,
|
var result,
|
||||||
index = 0,
|
index = 0,
|
||||||
tweenerIndex = 0,
|
|
||||||
length = animationPrefilters.length,
|
length = animationPrefilters.length,
|
||||||
deferred = jQuery.Deferred().always( function() {
|
deferred = jQuery.Deferred().always( function() {
|
||||||
// don't match elem in the :animated selector
|
// don't match elem in the :animated selector
|
||||||
@ -108,7 +107,7 @@ function Animation( elem, properties, options ) {
|
|||||||
startTime: fxNow || createFxNow(),
|
startTime: fxNow || createFxNow(),
|
||||||
duration: options.duration,
|
duration: options.duration,
|
||||||
tweens: [],
|
tweens: [],
|
||||||
createTween: function( prop, end, easing ) {
|
createTween: function( prop, end ) {
|
||||||
var tween = jQuery.Tween( elem, animation.opts, prop, end,
|
var tween = jQuery.Tween( elem, animation.opts, prop, end,
|
||||||
animation.opts.specialEasing[ prop ] || animation.opts.easing );
|
animation.opts.specialEasing[ prop ] || animation.opts.easing );
|
||||||
animation.tweens.push( tween );
|
animation.tweens.push( tween );
|
||||||
|
@ -357,7 +357,7 @@ jQuery.event = {
|
|||||||
// Make a writable jQuery.Event from the native event object
|
// Make a writable jQuery.Event from the native event object
|
||||||
event = jQuery.event.fix( event || window.event );
|
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 ] || []),
|
handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []),
|
||||||
delegateCount = handlers.delegateCount,
|
delegateCount = handlers.delegateCount,
|
||||||
args = core_slice.call( arguments ),
|
args = core_slice.call( arguments ),
|
||||||
@ -704,8 +704,7 @@ jQuery.each({
|
|||||||
var ret,
|
var ret,
|
||||||
target = this,
|
target = this,
|
||||||
related = event.relatedTarget,
|
related = event.relatedTarget,
|
||||||
handleObj = event.handleObj,
|
handleObj = event.handleObj;
|
||||||
selector = handleObj.selector;
|
|
||||||
|
|
||||||
// For mousenter/leave call the handler if related is outside the target.
|
// For mousenter/leave call the handler if related is outside the target.
|
||||||
// NB: No relatedTarget if the mouse left/entered the browser window
|
// NB: No relatedTarget if the mouse left/entered the browser window
|
||||||
|
@ -650,7 +650,7 @@ jQuery.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
clean: function( elems, context, fragment, scripts ) {
|
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,
|
safe = context === document && safeFragment,
|
||||||
ret = [];
|
ret = [];
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ jQuery.fn.extend({
|
|||||||
return val == null ?
|
return val == null ?
|
||||||
null :
|
null :
|
||||||
jQuery.isArray( val ) ?
|
jQuery.isArray( val ) ?
|
||||||
jQuery.map( val, function( val, i ){
|
jQuery.map( val, function( val ){
|
||||||
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
|
return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) };
|
||||||
}) :
|
}) :
|
||||||
{ 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 ) {
|
} else if ( qualifier.nodeType ) {
|
||||||
return jQuery.grep(elements, function( elem, i ) {
|
return jQuery.grep(elements, function( elem ) {
|
||||||
return ( elem === qualifier ) === keep;
|
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;
|
return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user