aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-03-31 11:53:06 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-03-31 11:53:06 +0000
commit8499c24770982b533cc11f3e12171f5151f11e37 (patch)
treed02c97206a66d7b71dd7d3d3b9be486be3a91f8a /actionpack/CHANGELOG
parent93e361e58a5bbde17e23bcbb6ed281e602baa039 (diff)
downloadrails-8499c24770982b533cc11f3e12171f5151f11e37.tar.gz
rails-8499c24770982b533cc11f3e12171f5151f11e37.tar.bz2
rails-8499c24770982b533cc11f3e12171f5151f11e37.zip
Added Effect.Puff and Effect.Appear #990, #996
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1046 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG9
1 files changed, 9 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index ebfac7ee0a..bc7686a5b6 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -3,8 +3,17 @@
* Fixed that on very rare occasions, webrick would raise a NoMethodError: private method 'split' called for nil #1001 [Flurin Egger]
* Added a wide range of new Javascript effects:
+ * Effect.Puff zooms the element out and makes it smoothly transparent at the same time, giving a "puff" illusion #996 [thomas@fesch.at]
+ After the animation is completed, the display property will be set to none.
+ This effect will work on relative and absolute positioned elements.
+
+ * Effect.Appear as the opposite of Effect.Fade #990 [thomas@fesch.at]
+ You should return elements with style="display:none;" or a like class for this to work best and have no chance of flicker.
+
* Effect.Squish for scaling down an element and making it disappear at the end #972 [thomas@fesch.at]
+
* Effect.Scale for smoothly scaling images or text up and down #972 [thomas@fesch.at]
+
* Effect.Fade which smoothly turns opacity from 100 to 0 and then hides the element #960 [thomas@fesch.at]
* Fixed problem with page caching #958 [Rick Olson]