You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lu...@apache.org on 2011/09/30 17:41:18 UTC

svn commit: r1177703 - /myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxRequest.js

Author: lu4242
Date: Fri Sep 30 15:41:17 2011
New Revision: 1177703

URL: http://svn.apache.org/viewvc?rev=1177703&view=rev
Log:
small fix remove illegal character found

Modified:
    myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxRequest.js

Modified: myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxRequest.js
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxRequest.js?rev=1177703&r1=1177702&r2=1177703&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxRequest.js (original)
+++ myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/xhrCore/_AjaxRequest.js Fri Sep 30 15:41:17 2011
@@ -291,7 +291,7 @@ myfaces._impl.core._Runtime.extendClass(
                 var ret = null;
 
                 //now this is less performant but we have to call it to allow viewstate decoration
-                if(!this._partialIdsArray || !this._partialIdsArray.length) {
+                if(!this._partialIdsArray ||!this._partialIdsArray.length) {
                     var viewState = jsf.getViewState(this._sourceForm);
                     ret = this._Lang.createFormDataDecorator(viewState);