Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Resources/Private/Partials/TableOfContents/Children.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
<f:for each="{children}" as="child">
<f:switch expression="{child.ITEM_STATE}">
<f:case value="ACT">
<li class="tx-dlf-toc-act">
<li class="tx-dlf-tableofcontents-active">
</f:case>
<f:case value="CUR">
<li class="tx-dlf-toc-cur">
<li class="tx-dlf-tableofcontents-current">
</f:case>
<f:case value="ACTIFSUB">
<li class="tx-dlf-toc-act tx-dlf-toc-ifsub">
<li class="tx-dlf-tableofcontents-active tx-dlf-tableofcontents-submenu">
</f:case>
<f:case value="CURIFSUB">
<li class="tx-dlf-toc-cur tx-dlf-toc-ifsub">
<li class="tx-dlf-tableofcontents-current tx-dlf-tableofcontents-submenu">
</f:case>
<f:case value="IFSUB">
<li class="tx-dlf-toc-no tx-dlf-toc-ifsub">
<li class="tx-dlf-tableofcontents-no tx-dlf-tableofcontents-submenu">
</f:case>
<f:defaultCase>
<li class="tx-dlf-toc-no">
<li class="tx-dlf-tableofcontents-no">
</f:defaultCase>
</f:switch>

Expand Down
4 changes: 2 additions & 2 deletions Resources/Private/Partials/TableOfContents/Title.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<html xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
data-namespace-typo3-fluid="true">

<span class="tx-dlf-toc-title">
<span class="tx-dlf-tableofcontents-title">
<f:if condition="{child.title}">
<f:then>
<f:format.crop maxCharacters="55" append="&nbsp;..."><f:format.htmlspecialchars doubleEncode="false">{child.title}</f:format.htmlspecialchars></f:format.crop>
Expand All @@ -23,4 +23,4 @@
</f:if>
</span>

<span class="tx-dlf-toc-pagination"><f:format.htmlspecialchars doubleEncode="false">{child.pagination}</f:format.htmlspecialchars></span>
<span class="tx-dlf-tableofcontents-pagination"><f:format.htmlspecialchars doubleEncode="false">{child.pagination}</f:format.htmlspecialchars></span>
Loading