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/10/13 21:01:58 UTC

svn commit: r1183027 - /myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Dom.js

Author: lu4242
Date: Thu Oct 13 19:01:58 2011
New Revision: 1183027

URL: http://svn.apache.org/viewvc?rev=1183027&view=rev
Log:
small fix remove invalid character

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

Modified: myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Dom.js
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Dom.js?rev=1183027&r1=1183026&r2=1183027&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Dom.js (original)
+++ myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_Dom.js Thu Oct 13 19:01:58 2011
@@ -160,7 +160,7 @@ myfaces._impl.core._Runtime.singletonExt
 
 
     deleteScripts: function(nodeList) {
-        if(!nodeList || !nodeList.length) return;
+        if(!nodeList || !nodeList.length) return;
         var len = nodeList.length;
         for(var cnt = 0; cnt < len; cnt++) {
              var item = nodeList[cnt];