Skip to content

Commit

Permalink
update wait time
Browse files Browse the repository at this point in the history
  • Loading branch information
Greeshmanth1909 committed May 26, 2024
1 parent 79ceb51 commit 58e0746
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -2974,7 +2974,7 @@ dropup.addEventListener('click', function () {
dropup.addEventListener('blur', function () {
setTimeout(() => {
if (ToCList.style.display === 'block') ToCList.style.display = 'none';
}, 100);
}, 200);
});

// Inject table of contents list into dropup element and scroll selection into view
Expand Down Expand Up @@ -3012,7 +3012,7 @@ function setupTableOfContents () {
setTimeout(function () {
iframe.contentWindow.scrollBy(0, 5);
iframe.contentWindow.focus();
}, 250);
}, 150);
ToCList.style.display = 'none';
});
});
Expand Down

0 comments on commit 58e0746

Please sign in to comment.