diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-18 16:30:42 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-11-18 16:30:42 +0000 |
commit | ec940ec352a8769f328f0d48ba7ff49394cdd851 (patch) | |
tree | 6f5a4f967c3c4f238fac3c08803afa4e090780c3 /themes | |
parent | 74a140e4b4d99fd15239bb0152bdfa0c8a6dccea (diff) |
themes/bootstrap: fix highlight of active tabs
Diffstat (limited to 'themes')
-rw-r--r-- | themes/bootstrap/luasrc/view/themes/bootstrap/header.htm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/bootstrap/luasrc/view/themes/bootstrap/header.htm b/themes/bootstrap/luasrc/view/themes/bootstrap/header.htm index 33e2e48d2..1d2387766 100644 --- a/themes/bootstrap/luasrc/view/themes/bootstrap/header.htm +++ b/themes/bootstrap/luasrc/view/themes/bootstrap/header.htm @@ -79,7 +79,7 @@ You may obtain a copy of the License at end if level > 2 then %> - <li class="tabmenu-item-<%=v%><%- if nnode._menu_selected or (node.leaf and v == leaf) then -%> active<% end %>"> + <li class="tabmenu-item-<%=v%><%- if nnode._menu_selected or (node.leaf and v == leaf) then %> active<% end %>"> <a href="<%=nodeurl(prefix, v, nnode.query)%>"><%=striptags(translate(nnode.title))%></a> </li> <% end |