You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2012/08/13 20:59:12 UTC

[2/3] git commit: Correct return value of fadeIn() to be the ElementWrapper

Correct return value of fadeIn() to be the ElementWrapper


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/24d13dc0
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/24d13dc0
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/24d13dc0

Branch: refs/heads/5.4-js-rewrite
Commit: 24d13dc06d7aad7d61bb130f4b8db4a5e022dc44
Parents: ccea2cb
Author: Howard M. Lewis Ship <hl...@apache.org>
Authored: Mon Aug 13 11:58:20 2012 -0700
Committer: Howard M. Lewis Ship <hl...@apache.org>
Committed: Mon Aug 13 11:58:20 2012 -0700

----------------------------------------------------------------------
 .../coffeescript/META-INF/modules/core/spi.coffee  |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/24d13dc0/tapestry-core/src/main/coffeescript/META-INF/modules/core/spi.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/coffeescript/META-INF/modules/core/spi.coffee b/tapestry-core/src/main/coffeescript/META-INF/modules/core/spi.coffee
index cd3f59a..153bdf8 100644
--- a/tapestry-core/src/main/coffeescript/META-INF/modules/core/spi.coffee
+++ b/tapestry-core/src/main/coffeescript/META-INF/modules/core/spi.coffee
@@ -78,7 +78,7 @@ define ["_", "prototype"], (_) ->
 
     styles[styleName] = initial
     element.setStyle styles
-
+fadeIn
   # Generic view of an DOM event that is passed to a handler function.
   #
   # Properties:
@@ -240,7 +240,7 @@ define ["_", "prototype"], (_) ->
         onstart: => @element.show()
         oncomplete: callback
 
-    this
+      this
 
     # Runs an animation to fade out an element over the specified duration. The element should already
     # be visible and fully opaque.