mirror of
https://github.com/jquery/jquery.git
synced 2025-01-10 18:24:24 +00:00
Cleanup spacing in effects.js. Fixes #10601
This commit is contained in:
parent
4fb7202e0a
commit
0b4ac1d2be
6
src/effects.js
vendored
6
src/effects.js
vendored
@ -203,7 +203,7 @@ jQuery.fn.extend({
|
|||||||
|
|
||||||
// Tracks whether to show or hide based on private
|
// Tracks whether to show or hide based on private
|
||||||
// data attached to the element
|
// data attached to the element
|
||||||
method = jQuery._data( this, "toggle" + p ) || (val === "toggle" ? hidden ? "show" : "hide" : 0);
|
method = jQuery._data( this, "toggle" + p ) || ( val === "toggle" ? hidden ? "show" : "hide" : 0 );
|
||||||
if ( method ) {
|
if ( method ) {
|
||||||
jQuery._data( this, "toggle" + p, method === "show" ? "hide" : "show" );
|
jQuery._data( this, "toggle" + p, method === "show" ? "hide" : "show" );
|
||||||
e[ method ]();
|
e[ method ]();
|
||||||
@ -222,7 +222,7 @@ jQuery.fn.extend({
|
|||||||
// We need to compute starting value
|
// We need to compute starting value
|
||||||
if ( unit !== "px" ) {
|
if ( unit !== "px" ) {
|
||||||
jQuery.style( this, p, (end || 1) + unit);
|
jQuery.style( this, p, (end || 1) + unit);
|
||||||
start = ((end || 1) / e.cur()) * start;
|
start = ( (end || 1) / e.cur() ) * start;
|
||||||
jQuery.style( this, p, start + unit);
|
jQuery.style( this, p, start + unit);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -408,7 +408,7 @@ jQuery.fx.prototype = {
|
|||||||
this.options.step.call( this.elem, this.now, this );
|
this.options.step.call( this.elem, this.now, this );
|
||||||
}
|
}
|
||||||
|
|
||||||
(jQuery.fx.step[ this.prop ] || jQuery.fx.step._default)( this );
|
( jQuery.fx.step[ this.prop ] || jQuery.fx.step._default )( this );
|
||||||
},
|
},
|
||||||
|
|
||||||
// Get the current size
|
// Get the current size
|
||||||
|
Loading…
Reference in New Issue
Block a user