aboutsummaryrefslogtreecommitdiff
path: root/docs/_templates
diff options
context:
space:
mode:
Diffstat (limited to 'docs/_templates')
-rw-r--r--docs/_templates/genindex.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/_templates/genindex.html b/docs/_templates/genindex.html
index 4faf370c..a5f2262f 100644
--- a/docs/_templates/genindex.html
+++ b/docs/_templates/genindex.html
@@ -17,10 +17,11 @@
key = key.substr(12); // discord.ext.
}
- if(el.textContent.endsWith('method)') || el.textContent.indexOf('()') !== -1) {
+ if(el.textContent.indexOf('()') !== -1) {
key = key + '()'
}
el.textContent = key;
}
+ document.querySelectorAll("td").forEach(el => el.style.width = 'auto');
</script>
{% endblock %}