Update of /cvsroot/struts-menu/navigator/web/templates
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13652/web/templates
Modified Files:
cssMenu.html
Log Message:
APF-599: Fixed issue with sub menu items not being properly closed with a </ul>
Index: cssMenu.html
===================================================================
RCS file: /cvsroot/struts-menu/navigator/web/templates/cssMenu.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** cssMenu.html 17 Oct 2006 20:51:37 -0000 1.5
--- cssMenu.html 22 Mar 2007 18:53:45 -0000 1.6
***************
*** 33,42 ****
#if ($menu.components.size() > 0)
! #if ($hasViewableChildren) <ul> #end
#foreach ($menuIt in $menu.components)
#displayCssMenu($menuIt)
#end
! </li>
#else
</li>
--- 33,49 ----
#if ($menu.components.size() > 0)
! #if ($hasViewableChildren)
! <ul>
! #end
#foreach ($menuIt in $menu.components)
#displayCssMenu($menuIt)
#end
!
! #if ($hasViewableChildren && ($velocityCount == $menu.parent.components.size()))
! </ul>
! #else
! </li>
! #end
#else
</li>
|