Skip to content

Commit 110802c

Browse files
wonseopmgol
authored andcommitted
Effect: Fix a unnecessary conditional statement in .stop()
Because of the above conditional, the 'type' variable has a value of type 'string' or undefined. Therefore, boolean comparisons for 'type' variable is always unnecessary because it return true. The patch removed the unnecessary conditional statement. Fixes gh-4374 Closes gh-4375
1 parent b220f6d commit 110802c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/effects.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ jQuery.fn.extend( {
538538
clearQueue = type;
539539
type = undefined;
540540
}
541-
if ( clearQueue && type !== false ) {
541+
if ( clearQueue ) {
542542
this.queue( type || "fx", [] );
543543
}
544544

0 commit comments

Comments
 (0)