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
Loading a page takes me about 12 seconds on a high-end desktop.
I recorded what's happening in Chromium with the performance profiler in the Developer Tools.
The first half of the time (below in green rectangle) is spent in init_tooltips, which calls out to some jQuery which takes all the time in querySelectorAll. The piece of offending code, according to the profile, is this one:
Loading a page takes me about 12 seconds on a high-end desktop.
I recorded what's happening in Chromium with the performance profiler in the Developer Tools.
Trace-20230726T110312.json.zip
The first half of the time (below in green rectangle) is spent in
init_tooltips
, which calls out to some jQuery which takes all the time inquerySelectorAll
. The piece of offending code, according to the profile, is this one:The culprit is the
$()
call, I assume.Second half of the time is spent in the same
querySelectorAll
but without a parent call.The text was updated successfully, but these errors were encountered: