mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Refactor code in effects to use data_priv. Re- Close gh-1244.
This commit is contained in:
parent
039371c741
commit
5179fa00b8
7
src/effects.js
vendored
7
src/effects.js
vendored
@ -304,7 +304,7 @@ function defaultPrefilter( elem, props, opts ) {
|
||||
|
||||
|
||||
// show/hide pass
|
||||
dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} );
|
||||
dataShow = data_priv.get( elem, "fxshow" );
|
||||
for ( index in props ) {
|
||||
value = props[ index ];
|
||||
if ( rfxtypes.exec( value ) ) {
|
||||
@ -313,7 +313,7 @@ function defaultPrefilter( elem, props, opts ) {
|
||||
if ( value === ( hidden ? "hide" : "show" ) ) {
|
||||
|
||||
// If there is dataShow left over from a stopped hide or show and we are going to proceed with show, we should pretend to be hidden
|
||||
if( value === "show" && dataShow[ index ] !== undefined ) {
|
||||
if( value === "show" && dataShow !== undefined && dataShow[ index ] !== undefined ) {
|
||||
hidden = true;
|
||||
} else {
|
||||
continue;
|
||||
@ -324,9 +324,8 @@ function defaultPrefilter( elem, props, opts ) {
|
||||
}
|
||||
|
||||
length = handled.length;
|
||||
if ( !length ) {
|
||||
if ( length ) {
|
||||
dataShow = data_priv.get( elem, "fxshow" ) || data_priv.access( elem, "fxshow", {} );
|
||||
} else {
|
||||
if ( "hidden" in dataShow ) {
|
||||
hidden = dataShow.hidden;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user