Changeset 3303
- Timestamp:
- 09/15/07 03:26:33 (1 year ago)
- Files:
-
- 1 modified
-
trunk/jquery/src/fx.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/fx.js
r3302 r3303 106 106 // We need to compute starting value 107 107 if ( unit != "px" ) { 108 self.style[ name ] = end+ unit;109 start = ( end/ e.cur(true)) * start;108 self.style[ name ] = (end || 1) + unit; 109 start = ((end || 1) / e.cur(true)) * start; 110 110 self.style[ name ] = start + unit; 111 111 }
