<lift:Menu.builder li_item:class="current_tab" />
I've cut my site map down to this...
val menus = Menu(Loc("one", new Link("index" :: Nil, false), "Page 1")) ::
Menu(Loc("two", new Link("index2" :: Nil, false), "Page 2")) :: Nil
LiftRules.setSiteMap(SiteMap(menus:_*))
...and I see the following output:
<ul><li class="current_tab"><a href="/index">Page 1</a></li><li
class="current_tab"><span>Page 2</span></li></ul>
I'd expect only one of the li elements to have the class attribute.
Am I doing something wrong here?
Thank you
Richard