You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Sven Homburg (JIRA)" <ji...@apache.org> on 2015/03/07 15:53:38 UTC

[jira] [Commented] (TAP5-2463) ResponseWrapper dont work correctly in dom,js

    [ https://issues.apache.org/jira/browse/TAP5-2463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14351617#comment-14351617 ] 

Sven Homburg commented on TAP5-2463:
------------------------------------

actual git source of t5-core-dom.coffee

{code}
constructor: (@jqxhr, data) ->

      @status = @jqxhr.status
      @statusText = jqxhr.statusText
      @json = data # Mostly right?  Need a content type check?
      @text = jqxhr.responseText
{code}

should:
{code}
constructor: (@jqxhr, data) ->

      @status = @jqxhr.status
      @statusText = @jqxhr.statusText
      @json = data # Mostly right?  Need a content type check?
      @text = @jqxhr.responseText
{code}

> ResponseWrapper dont work correctly in dom,js
> ---------------------------------------------
>
>                 Key: TAP5-2463
>                 URL: https://issues.apache.org/jira/browse/TAP5-2463
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.4
>            Reporter: Sven Homburg
>
> since beta-29
> if javascript calls instantiate the ResponseWrapper class
> there is thrown an exception, that "jqxhr" is unknown



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)