mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Effects: set default easing using jQuery.easing._default
Fixes gh-2219 Close gh-2218
This commit is contained in:
5
src/effects.js
vendored
5
src/effects.js
vendored
@@ -289,7 +289,10 @@ function Animation( elem, properties, options ) {
|
||||
animation = deferred.promise({
|
||||
elem: elem,
|
||||
props: jQuery.extend( {}, properties ),
|
||||
opts: jQuery.extend( true, { specialEasing: {} }, options ),
|
||||
opts: jQuery.extend( true, {
|
||||
specialEasing: {},
|
||||
easing: jQuery.easing._default
|
||||
}, options ),
|
||||
originalProperties: properties,
|
||||
originalOptions: options,
|
||||
startTime: fxNow || createFxNow(),
|
||||
|
||||
Reference in New Issue
Block a user