You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/07/26 16:55:17 UTC

svn commit: r425776 - /incubator/xap/trunk/WebContent/examples/dojo/dojo1.html

Author: mturyn
Date: Wed Jul 26 09:55:17 2006
New Revision: 425776

URL: http://svn.apache.org/viewvc?rev=425776&view=rev
Log:
Added a comment explaining the load-order of the classes to be debugged; changed debug-loading level from "debugAll" to true (=="debug listed").

Modified:
    incubator/xap/trunk/WebContent/examples/dojo/dojo1.html

Modified: incubator/xap/trunk/WebContent/examples/dojo/dojo1.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/dojo1.html?rev=425776&r1=425775&r2=425776&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/dojo1.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/dojo1.html Wed Jul 26 09:55:17 2006
@@ -21,17 +21,18 @@
     <script language="JavaScript" type="text/javascript" src="../../src/xap/Xap.js"></script>
     
 
-    <script language="JavaScript" type="text/javascript">    	
+    <script language="JavaScript" type="text/javascript"> 
+    	// These should be in this order, as this is what their dependencies
+    	// look like   	
 		Xap.addDebuggables( 
 						"xap.taghandling.AbstractTagImpl",
 						"xap.bridges.dojo.DojoWidgetBridge",		
 						"xap.bridges.dojo.DojoButtonBridge"
-
 							) ;
     </script>
    
     <script language="JavaScript" type="text/javascript">
-    	Xap.bootstrap( "../../", "debugAll" );
+    	Xap.bootstrap( "../../", true );
   	</script>
 
     	
@@ -81,6 +82,6 @@
 	<div id="foot">FOOTER TEXT</dev>
 
 <!--  Do this as late as possible---brings in script tags: -->
-<script> Xap._loadDebuggables() </script>
+<script> Xap._loadDebuggables();</script>
 </body>
 </html>