Author: tmjee Date: Thu Jun 8 10:37:51 2006 New Revision: 412810 URL: http://svn.apache.org/viewvc?rev=412810&view=rev Log: - corrected dojo.event.topic.subscribe(...) js method call
Modified: struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleDynamic.jsp struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleStatic.jsp Modified: struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleDynamic.jsp URL: http://svn.apache.org/viewvc/struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleDynamic.jsp?rev=412810&r1=412809&r2=412810&view=diff ============================================================================== --- struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleDynamic.jsp (original) +++ struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleDynamic.jsp Thu Jun 8 10:37:51 2006 @@ -21,7 +21,7 @@ }); }; - dojo.event.topic.subscribe("treeSelected", "treeNodeSelected"); + dojo.event.topic.subscribe("treeSelected", this, "treeNodeSelected"); </script> Modified: struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleStatic.jsp URL: http://svn.apache.org/viewvc/struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleStatic.jsp?rev=412810&r1=412809&r2=412810&view=diff ============================================================================== --- struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleStatic.jsp (original) +++ struts/action2/trunk/apps/showcase/src/main/webapp/tags/ui/treeExampleStatic.jsp Thu Jun 8 10:37:51 2006 @@ -20,7 +20,7 @@ }); }; - dojo.event.topic.subscribe("treeSelected", "treeNodeSelected"); + dojo.event.topic.subscribe("treeSelected", this, "treeNodeSelected"); </script>