there seems to be a UTF character in the JavaScript you committed ('Â'). This
might be broken on a few browsers.
Or is this only a commit mail artifact? (which I don't believe)
----- Original Message -----
> From: "[email protected]" <[email protected]>
> To: [email protected]
> Cc:
> Sent: Friday, November 16, 2012 4:47 AM
> Subject: svn commit: r1410192 -
> /myfaces/core/branches/2.2.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxResponse.js
>
> Author: lu4242
> Date: Fri Nov 16 03:47:08 2012
> New Revision: 1410192
>
> URL: http://svn.apache.org/viewvc?rev=1410192&view=rev
> Log:
> small fix add parentesis to allow compressor to work.
>
> Modified:
>
> myfaces/core/branches/2.2.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxResponse.js
>
> Modified:
> myfaces/core/branches/2.2.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxResponse.js
> URL:
> http://svn.apache.org/viewvc/myfaces/core/branches/2.2.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxResponse.js?rev=1410192&r1=1410191&r2=1410192&view=diff
> ==============================================================================
> ---
> myfaces/core/branches/2.2.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxResponse.js
>
> (original)
> +++
> myfaces/core/branches/2.2.x/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxResponse.js
>
> Fri Nov 16 03:47:08 2012
> @@ -372,7 +372,7 @@ _MF_SINGLTN(_PFX_XHR + "_AjaxResponse",
> * @param node the changes node to be processed
> */
> processUpdate:function (request, context, node) {
> - if (node.getAttribute('id').indexOf(this.P_VIEWSTATE) != -1
> ||Â node.getAttribute('id').indexOf(this.P_CLIENTWINDOW) != -1) {
> + if ( (node.getAttribute('id').indexOf(this.P_VIEWSTATE) != -1)
> ||Â (node.getAttribute('id').indexOf(this.P_CLIENTWINDOW) != -1) ) {
> //update the submitting forms viewstate to the new value
> // The source form has to be pulled out of the CURRENT document
> first because the context object
> // may refer to an invalid document if an update of the entire
> body
> has occurred before this point.
>