Fix offset when scrolling to section (#9847)

This commit is contained in:
Barbara Valdez 2020-04-03 14:25:51 -07:00 коммит произвёл GitHub
Родитель 177a58c81d
Коммит 548c69e074
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -669,7 +669,7 @@ export class NotebookComponent extends AngularDisposable implements OnInit, OnDe
let section = find(this.getSectionElements(), s => s.relativeUri && s.relativeUri.toLowerCase() === id);
if (section) {
// Scroll this section to the top of the header instead of just bringing header into view.
let scrollTop = jQuery(section.headerEl).offset().top;
let scrollTop = section.headerEl.offsetTop;
(<HTMLElement>this.container.nativeElement).scrollTo({
top: scrollTop,
behavior: 'smooth'