You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2010/05/17 15:39:19 UTC

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

Author: werpu
Date: Mon May 17 13:39:19 2010
New Revision: 945146

URL: http://svn.apache.org/viewvc?rev=945146&view=rev
Log:
https://issues.apache.org/jira/browse/MYFACES-2721
fixing a refactoring error

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

Modified: myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js
URL: http://svn.apache.org/viewvc/myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js?rev=945146&r1=945145&r2=945146&view=diff
==============================================================================
--- myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js (original)
+++ myfaces/core/trunk/api/src/main/javascript/META-INF/resources/myfaces/_impl/_util/_ListenerQueue.js Mon May 17 13:39:19 2010
@@ -36,7 +36,7 @@ myfaces._impl.core._Runtime.extendClass(
      */
     enqueue : function(/*function*/listener) {
         this._assertListener(listener);
-        this._callSuper("enqueue");
+        this._callSuper("enqueue", listener);
     },
 
     /**