Changeset 2131
- Timestamp:
- 06/21/07 03:09:04 (1 year ago)
- Files:
-
- 1 modified
-
trunk/jquery/src/fx/fx.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/fx/fx.js
r2130 r2131 319 319 if ( prop[p] == "hide" && hidden || prop[p] == "show" && !hidden ) 320 320 return jQuery.isFunction(opt.complete) && opt.complete.apply(this); 321 321 322 322 this.curAnim = jQuery.extend({}, prop); 323 323 … … 365 365 jQuery.isFunction( speed ) && speed, 366 366 duration: speed, 367 easing: fn && easing || easing && easing.constructor != Function && easing || "swing"367 easing: fn && easing || easing && easing.constructor != Function && easing || (jQuery.easing.swing ? "swing" : "linear") 368 368 }; 369 369
