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
I've found the startup time for the search to be very painful, especially since when I click a search result and find its the wrong one, I have to start all over again waiting for it to load.
What's happening here is that the SharedWorker is being killed by chrome, because at the point I click the link there are no mathlib_docs tabs open with a search connection to keep it alive.
As a workaround, I can just open an extra tab and start a search in it, which is enough to keep the search alive. Better solutions might be to:
Intercept internal page navigation and use the javascript history API to replace the page content without actually unloading the page
I've found the startup time for the search to be very painful, especially since when I click a search result and find its the wrong one, I have to start all over again waiting for it to load.
What's happening here is that the
SharedWorker
is being killed by chrome, because at the point I click the link there are no mathlib_docs tabs open with a search connection to keep it alive.As a workaround, I can just open an extra tab and start a search in it, which is enough to keep the search alive. Better solutions might be to:
Make it so I can open the search results in a new tab.(Make it possible to open search results in a new tab #97)The text was updated successfully, but these errors were encountered: