diff options
author | Brandon Aaron <brandon.aaron@gmail.com> | 2009-03-18 14:58:06 +0000 |
---|---|---|
committer | Brandon Aaron <brandon.aaron@gmail.com> | 2009-03-18 14:58:06 +0000 |
commit | 62a251a0cf8b8652082da3d5a72b6c6e2b120914 (patch) | |
tree | e320aa8544f26eb4fd16c02e0cd740d4172c1871 /src/fx.js | |
parent | ace13387c8d7b5823a580db0f1b2aafac515b9f5 (diff) | |
download | jquery-62a251a0cf8b8652082da3d5a72b6c6e2b120914.tar.gz jquery-62a251a0cf8b8652082da3d5a72b6c6e2b120914.zip |
fix for #4204, fadeTo shows hidden elements before animating
Diffstat (limited to 'src/fx.js')
-rw-r--r-- | src/fx.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -95,7 +95,8 @@ jQuery.fn.extend({ }, fadeTo: function(speed,to,callback){ - return this.animate({opacity: to}, speed, callback); + return this.filter(":hidden").css('opacity', 0).show().end() + .animate({opacity: to}, speed, callback); }, animate: function( prop, speed, easing, callback ) { |