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:32:25 UTC

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

Author: werpu
Date: Mon May 17 13:32:25 2010
New Revision: 945144

URL: http://svn.apache.org/viewvc?rev=945144&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=945144&r1=945143&r2=945144&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:32:25 2010
@@ -36,7 +36,7 @@ myfaces._impl.core._Runtime.extendClass(
      */
     enqueue : function(/*function*/listener) {
         this._assertListener(listener);
-        this._inherited();
+        this._callSuper("enqueue");
     },
 
     /**
@@ -46,7 +46,7 @@ myfaces._impl.core._Runtime.extendClass(
      */
     remove : function(/*function*/listener) {
         this._assertListener(listener);
-        this._inherited();
+        this._callSuper("remove");
     },
 
     /**