You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I click on any method, the modal with the iframe appears, but as the docs page is being loaded, first the top of the page is visible, then it jumps to an appropriate anchor after a second, which is annoying.
Instead, please show the iframe upon load, so the page is already positioned correctly. You can do it by setting #iframe { visibility: hidden; } and $('#iframe').addEventListener('load', function () { this.style.visibility= 'visible'; });
The text was updated successfully, but these errors were encountered:
When I click on any method, the modal with the iframe appears, but as the docs page is being loaded, first the top of the page is visible, then it jumps to an appropriate anchor after a second, which is annoying.
Instead, please show the iframe upon load, so the page is already positioned correctly. You can do it by setting
#iframe { visibility: hidden; }
and$('#iframe').addEventListener('load', function () { this.style.visibility= 'visible'; });
The text was updated successfully, but these errors were encountered: