Fixed bug in scrollspy

This commit is contained in:
squidfunk 2016-09-23 12:39:47 +02:00
parent 9338045887
commit 2fd1740f3d
5 changed files with 6 additions and 7 deletions

File diff suppressed because one or more lines are too long

View File

@ -91,7 +91,7 @@
var base_url = '{{ base_url }}';
var repo_url = '{{ repo_url }}';
</script>
<script src="{{ base_url }}/assets/javascripts/application-48691dba51.js"></script>
<script src="{{ base_url }}/assets/javascripts/application-409da39d08.js"></script>
{% for path in extra_javascript %}
<script src="{{ path }}"></script>
{% endfor %}

View File

@ -67,7 +67,7 @@ document.addEventListener('DOMContentLoaded', function() {
var toc = new Sidebar('.md-sidebar--secondary');
toc.listen();
var spy = new ScrollSpy('.md-nav--toc .md-nav__link');
var spy = new ScrollSpy('.md-sidebar--secondary .md-nav--secondary .md-nav__link');
spy.listen();
window.addEventListener('resize', handler);

View File

@ -53,11 +53,10 @@ class ScrollSpy {
* @param {Event} ev - Event
*/
update(ev) {
let index = this.index_;
/* Scroll direction is down */
if (this.offset_ <= window.pageYOffset) {
for (let i = this.index_; i < this.el_.length; i++) {
for (let i = this.index_ + 1; i < this.el_.length; i++) {
let anchor = document.querySelector(this.el_[i].hash);
if (anchor.offsetTop <= window.pageYOffset) {
if (i > 0)