Skip to content

Commit

Permalink
Fix hide description bug (#1948)
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb authored Jan 30, 2021
1 parent 223ca59 commit b78c884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/base/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@
</a>
{% if not ebook %}{{ figure_dropdown(metadata, chapter_config, id, sheets_gid, sql_file, image) }}{% endif %}
</div>
<button hidden="" class="fig-description-button" aria-expanded="false" aria-controls="{{ anchor }}-description" data-show-text="{{ show_description(metadata,chapter_config,id) }}" data-hide-text="{{ hide_description(metadata,id) }}">{{ show_description(metadata,chapter_config,id) }}</button>
<button hidden="" class="fig-description-button" aria-expanded="false" aria-controls="{{ anchor }}-description" data-show-text="{{ show_description(metadata,chapter_config,id) }}" data-hide-text="{{ hide_description(metadata,chapter_config,id) }}">{{ show_description(metadata,chapter_config,id) }}</button>
<div id="{{ anchor }}-description" class="visually-hidden">{{ description|safe }}</div>
{%- elif content != "" %}
<div class="figure-wrapper">
Expand Down

0 comments on commit b78c884

Please sign in to comment.