- let $pageNav = null;
-
- $(document).ready(function () {
- // fetch all the headings.
- let headings = document.querySelector('.page-content').querySelectorAll('h1, h2, h3, h4, h5, h6');
- // if headings are present, add observers.
- if (headings.length > 0) {
- addNavObserver(headings);
- }
- });
+ let pageNav = document.querySelector('.sidebar-page-nav');
+
+ // fetch all the headings.
+ let headings = document.querySelector('.page-content').querySelectorAll('h1, h2, h3, h4, h5, h6');
+ // if headings are present, add observers.
+ if (headings.length > 0) {
+ addNavObserver(headings);
+ }