aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrandon Aaron <brandon.aaron@gmail.com>2009-03-18 14:58:06 +0000
committerBrandon Aaron <brandon.aaron@gmail.com>2009-03-18 14:58:06 +0000
commit62a251a0cf8b8652082da3d5a72b6c6e2b120914 (patch)
treee320aa8544f26eb4fd16c02e0cd740d4172c1871
parentace13387c8d7b5823a580db0f1b2aafac515b9f5 (diff)
downloadjquery-62a251a0cf8b8652082da3d5a72b6c6e2b120914.tar.gz
jquery-62a251a0cf8b8652082da3d5a72b6c6e2b120914.zip
fix for #4204, fadeTo shows hidden elements before animating
-rw-r--r--src/fx.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/fx.js b/src/fx.js
index c949bdc6a..45c2389cd 100644
--- a/src/fx.js
+++ b/src/fx.js
@@ -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 ) {