Flatten genindex to not group names.

Also better width in the tables.
This commit is contained in:
Rapptz
2019-06-30 18:59:19 -04:00
parent 9d0400516a
commit ac00fcad77
3 changed files with 49 additions and 1 deletions

View File

@ -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 %}