Browse Source

Fix collapsible sidebar not working

pull/5775/head
Rapptz 5 years ago
parent
commit
39f1f9098e
  1. 4
      docs/_static/sidebar.js

4
docs/_static/sidebar.js

@ -41,9 +41,9 @@ class Sidebar {
icon.addEventListener('click', () => { icon.addEventListener('click', () => {
if (icon.classList.contains('expanded')) { if (icon.classList.contains('expanded')) {
collapseSection(icon); this.collapseSection(icon);
} else { } else {
expandSection(icon); this.expandSection(icon);
} }
}) })

Loading…
Cancel
Save