Repository: tapestry-5 Updated Branches: refs/heads/master dd0c58457 -> a260fa25e
TAP5-2463: fix t5/core/dom:ResponseWrapper constructor for prototype Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a260fa25 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a260fa25 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a260fa25 Branch: refs/heads/master Commit: a260fa25e76cf408bcf5645a8d43e171f3a27d77 Parents: dd0c584 Author: ffacon <[email protected]> Authored: Tue Aug 25 22:52:01 2015 +0200 Committer: ffacon <[email protected]> Committed: Tue Aug 25 22:52:01 2015 +0200 ---------------------------------------------------------------------- .../org/apache/tapestry5/t5-core-dom.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a260fa25/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 6f5adf6..57304b8 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 @@ -671,10 +671,10 @@ define ["underscore", "./utils", "./events", "jquery"], constructor: (@res) -> - @status = res.status - @statusText = res.statusText - @json = res.responseJSON - @text = res.responseText + @status = @res.status + @statusText = @res.statusText + @json = @res.responseJSON + @text = @res.responseText # Retrieves a response header by name header: (name) ->
