Author: hlship
Date: Mon Jun 30 14:26:06 2008
New Revision: 672931

URL: http://svn.apache.org/viewvc?rev=672931&view=rev
Log:
TAPESTRY-2492: Using FireFox 3 with FireBug, tapestry.js attempts to redirect 
error(), warn(), debug() to FireBug console, but fails

Modified:
    
tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js

Modified: 
tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
URL: 
http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js?rev=672931&r1=672930&r2=672931&view=diff
==============================================================================
--- 
tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
 (original)
+++ 
tapestry/tapestry5/trunk/tapestry-core/src/main/resources/org/apache/tapestry5/tapestry.js
 Mon Jun 30 14:26:06 2008
@@ -521,10 +521,7 @@
 
 Element.addMethods(Tapestry.ElementAdditions);
 
-// Look for the Firebug console API and rewrite the Tapestry.error|warn|debug 
methods around it.
-// This seems to be broken under FireFox 3. It has been disabled until we 
deterimine what is broken.
-
-if (false && window.console)
+if (window.console)
 {
     var createlog = function (log)
     {


Reply via email to