Browse Source

Move table JS outside of scrolling

pull/6176/head
Rapptz 5 years ago
parent
commit
5bd05b194d
  1. 15
      docs/_static/custom.js

15
docs/_static/custom.js

@ -28,12 +28,13 @@ $(document).ready(function () {
activeLink.parent().addClass('active');
}
const tables = document.querySelectorAll('.py-attribute-table[data-move-to-id]');
tables.forEach(table => {
let element = document.getElementById(table.getAttribute('data-move-to-id'));
let parent = element.parentNode;
// insert ourselves after the element
parent.insertBefore(table, element.nextSibling);
});
});
const tables = document.querySelectorAll('.py-attribute-table[data-move-to-id]');
tables.forEach(table => {
let element = document.getElementById(table.getAttribute('data-move-to-id'));
let parent = element.parentNode;
// insert ourselves after the element
parent.insertBefore(table, element.nextSibling);
});
});

Loading…
Cancel
Save