<li th:fragment="submenu(submenu, parent, pos)"
th:each="entry : ${submenu}"
th:with="
- leaf=${pos == len - 1},
+ leaf=${pos gt len - 1},
selected=${!leaf and crumbs.get(pos) == entry},
active=${entry == uri},
sibling=${pos + 1 == len and (_childs.get(uri) == null or uri == parent)},
childs=${entry == parent ? null : _childs.get(entry)}
"
class="s sub"
- th:class="'s' + (${childs} ? ' sub' : '') + (${selected or sibling} ? '' : ' off')">
+ th:class="'s' + (${childs} ? ' sub' : '') + (${selected or sibling or leaf} ? '' : ' off')">
<a href="../potemkin/fix-swf/overview.html"
th:if="${entry != parent}"
th:href="@{${entry}}"