update from sparkleup

This commit is contained in:
Madison Scott-Clary 2020-04-15 19:25:06 -07:00
parent 9cd115268c
commit ccb9f797cb
2 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@
<script type="text/javascript">
const els = document.querySelectorAll('li');
els.forEach(el => {
if (el.querySelector('ul').length !== 0) {
if (el.querySelectorAll('li').length !== 0) {
el.classList.toggle('has-nested');
}
});