DiscoTOC/javascripts/discourse/templates/components/table-of-contents.hbs

20 lines
414 B
Handlebars
Raw Permalink Normal View History

2022-10-02 12:49:47 -04:00
<div class="d-toc-main">
<div class="d-toc-icons">
<a
2022-10-02 12:59:20 -04:00
href
2022-10-02 12:49:47 -04:00
class="scroll-to-bottom"
title={{i18n (theme-prefix "post_bottom_tooltip")}}
2022-10-02 12:59:20 -04:00
{{on "click" this.scrollToBottom}}
2022-10-02 12:49:47 -04:00
>
{{d-icon "downward"}}
</a>
2022-10-02 12:57:37 -04:00
<a href class="d-toc-close" {{on "click" this.closeOverlay}}>
{{d-icon "times"}}
</a>
2022-10-02 12:49:47 -04:00
</div>
2022-10-02 12:57:37 -04:00
2022-10-02 12:49:47 -04:00
<div id="d-toc">
{{{this.data.html}}}
2022-10-02 12:49:47 -04:00
</div>
</div>