Skip to content

Commit 2357d6d

Browse files
committed
Easings: Save a byte.
1 parent c090fe9 commit 2357d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.effects.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ $.each( baseEasings, function( name, easeIn ) {
722722
$.easing[ "easeInOut" + name ] = function( p ) {
723723
return p < 0.5 ?
724724
easeIn( p * 2 ) / 2 :
725-
easeIn( p * -2 + 2 ) / -2 + 1;
725+
1 - easeIn( p * -2 + 2 ) / 2;
726726
};
727727
});
728728

0 commit comments

Comments
 (0)