We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding elements on('flatdoc:ready') causes scroll bar to desync (it shows like you're below where you really are).
Note: The elements that I'm adding are not <h1>, <h2>...
<h1>
<h2>
$(document).on('flatdoc:ready', function() { fetch(somewhere, { method: 'get', mode: 'no-cors', referrerPolicy: 'no-referrer' }) .then(res => res.text()) // toString .then(html => new DOMParser().parseFromString(html, "text/html")) .then(element => { const target = document.getElementById(where_to_add); target.parentNode.insertBefore(element, target.nextSibling); // insert below target }); }
I've found a solution, but I don't know if it can have consequences.
then
.then(_ => { $("h2, h3").scrollagent(function(cid, pid, currentElement, previousElement) { if (pid) { $("[href='#"+pid+"']").removeClass('active'); } if (cid) { $("[href='#"+cid+"']").addClass('active'); } }); });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Adding elements on('flatdoc:ready') causes scroll bar to desync (it shows like you're below where you really are).
Note: The elements that I'm adding are not
<h1>
,<h2>
...How to reproduce
How to solve
I've found a solution, but I don't know if it can have consequences.
then
), add:The text was updated successfully, but these errors were encountered: