Changeset 4287
- Timestamp:
- 12/20/07 20:40:20 (9 months ago)
- Location:
- trunk/jquery
- Files:
-
- 2 modified
-
src/core.js (modified) (1 diff)
-
test/unit/fx.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/jquery/src/core.js
r4251 r4287 324 324 if ( events === true ) 325 325 this.find("*").andSelf().each(function(i){ 326 if (this.nodeType == 3) 327 return; 326 328 var events = jQuery.data( this, "events" ); 327 329 -
trunk/jquery/test/unit/fx.js
r4285 r4287 2 2 3 3 test("animate(Hash, Object, Function)", function() { 4 expect( 3);4 expect(1); 5 5 stop(); 6 6 var hash = {opacity: 'show'}; … … 8 8 $('#foo').animate(hash, 0, function() { 9 9 ok( hash.opacity == hashCopy.opacity, 'Check if animate changed the hash parameter' ); 10 start(); 10 11 }); 11 12 });
