Skip to content

Commit

Permalink
fix(babelio): fix tab according to client demand
Browse files Browse the repository at this point in the history
Co-Authored-by: Pascal Repond <[email protected]>
  • Loading branch information
PascalRepond committed May 23, 2024
1 parent 3e2a734 commit 06e52d2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -310,9 +310,9 @@ <h3>
{% if viewcode | babeltheque_enabled_view and isbn is not none %}
<li class="nav-item">
<a class="nav-link" href="#documents-more-infos" data-toggle="tab"
id="documents-more-infos-tab" title="Babelio" role="tab"
id="documents-more-infos-tab" title="{{ _('More info') }}" role="tab"
aria-controls="documents-description" aria-selected="false">
<i class="fa fa-bars"></i> Babelio
<i class="fa fa-bars"></i> {{ _('More info') }}
</a>
</li>
{% endif %}
Expand Down Expand Up @@ -348,9 +348,9 @@ <h3>
{% if viewcode | babeltheque_enabled_view and isbn is not none %}
<li class="nav-item">
<a class="nav-link" href="#documents-more-infos" data-toggle="tab"
id="documents-more-infos-tab" title="Babelio" role="tab"
id="documents-more-infos-tab" title="{{ _('More info') }}" role="tab"
aria-controls="documents-more-infos" aria-selected="false">
<i class="fa fa-bars"></i> Babelio
<i class="fa fa-bars"></i> {{ _('More info') }}
</a>
</li>
{% endif %}
Expand Down

0 comments on commit 06e52d2

Please sign in to comment.