pidgin/nest

Don't add Copy-to-Clipboard to the Table of Contents.

2019-08-20, Elliott Sales de Andrade
850f7ddd9d78
Parents 4fbdcc71646d
Children cd63b87c08cc
Don't add Copy-to-Clipboard to the Table of Contents.
--- a/hugo/themes/learn/static/js/learn.js Tue Jun 25 22:54:54 2019 -0400
+++ b/hugo/themes/learn/static/js/learn.js Tue Aug 20 17:02:33 2019 -0400
@@ -195,9 +195,10 @@
elems.each(function () {
const code = $(this);
const isInHeading = code.parent().is('h1,h2,h3,h4,h5,h6,h7');
+ const isInToc = code.parents('nav#TableOfContents').length > 0;
const isTooShort = code.text().length < 5
- if (!isInHeading && !isTooShort) {
+ if (!isInHeading && !isInToc && !isTooShort) {
code.after('<span class="copy-to-clipboard" title="Copy to clipboard" />');
code.next('.copy-to-clipboard').on('mouseleave', removeTooltip);
}