You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by jk...@apache.org on 2015/03/08 10:16:15 UTC

tapestry-5 git commit: TAP5-2463: fix t5/core/dom:ResponseWrapper constructor

Repository: tapestry-5
Updated Branches:
  refs/heads/master 73589d30f -> 4ace4a44b


TAP5-2463: fix t5/core/dom:ResponseWrapper constructor


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

Branch: refs/heads/master
Commit: 4ace4a44b8f9eabe7d4d6428a0196fd19df76e73
Parents: 73589d3
Author: Jochen Kemnade <jk...@apache.org>
Authored: Sun Mar 8 10:15:26 2015 +0100
Committer: Jochen Kemnade <jk...@apache.org>
Committed: Sun Mar 8 10:15:55 2015 +0100

----------------------------------------------------------------------
 .../org/apache/tapestry5/t5-core-dom.coffee                    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/4ace4a44/tapestry-core/src/main/preprocessed-coffeescript/org/apache/tapestry5/t5-core-dom.coffee
----------------------------------------------------------------------
diff --git a/tapestry-core/src/main/preprocessed-coffeescript/org/apache/tapestry5/t5-core-dom.coffee b/tapestry-core/src/main/preprocessed-coffeescript/org/apache/tapestry5/t5-core-dom.coffee
index dedec57..6f5adf6 100644
--- a/tapestry-core/src/main/preprocessed-coffeescript/org/apache/tapestry5/t5-core-dom.coffee
+++ b/tapestry-core/src/main/preprocessed-coffeescript/org/apache/tapestry5/t5-core-dom.coffee
@@ -657,10 +657,10 @@ define ["underscore", "./utils", "./events", "jquery"],
 
     constructor: (@jqxhr, data) ->
 
-      @status = jqxhr.status
-      @statusText = jqxhr.statusText
+      @status = @jqxhr.status
+      @statusText = @jqxhr.statusText
       @json = data # Mostly right?  Need a content type check?
-      @text = jqxhr.responseText
+      @text = @jqxhr.responseText
 
     # Retrieves a response header by name
     header: (name) ->