You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by id...@apache.org on 2009/02/11 11:27:02 UTC

svn commit: r743291 - /myfaces/tobago/branches/tobago-1.0.x/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Author: idus
Date: Wed Feb 11 10:27:01 2009
New Revision: 743291

URL: http://svn.apache.org/viewvc?rev=743291&view=rev
Log:
avoid JS error if logging is not enabled; added missing dummy for debugAjaxComponents function

Modified:
    myfaces/tobago/branches/tobago-1.0.x/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js

Modified: myfaces/tobago/branches/tobago-1.0.x/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js?rev=743291&r1=743290&r2=743291&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js (original)
+++ myfaces/tobago/branches/tobago-1.0.x/theme/standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago.js Wed Feb 11 10:27:01 2009
@@ -2184,8 +2184,9 @@
       debug: function(text) {},
       info  : function(text) {},
       warn: function(text) {},
-      error: function(text) {alert(text)},
-      show: function() {}
+      error: function(text) {alert(text);},
+      show: function() {},
+      debugAjaxComponents: function() {}
   };
 }