fix(toc): fix inaccurate headerLinkTop calculation that result in activeTocIndex drift.
This commit is contained in:
@@ -160,11 +160,11 @@ jQuery(function($) {
|
||||
|
||||
const HEADERFIX = 120;
|
||||
const $toclink = $('.toc-link');
|
||||
const $headerlink = $('.headerlink');
|
||||
const $headerDummyLink = $('.post-dummy-target');
|
||||
const $tocLinkLis = $('.post-toc-content li');
|
||||
const activeIndex = function () {
|
||||
const scrollTop = $(window).scrollTop();
|
||||
const headerlinkTop = $.map($headerlink, function(link) {
|
||||
const headerlinkTop = $.map($headerDummyLink, function(link) {
|
||||
return $(link).offset().top;
|
||||
});
|
||||
const searchActiveTocIndex = function(array, target) {
|
||||
|
||||
Reference in New Issue
Block a user