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 using keyboard shortcuts (CTRL + U/I) to navigate to the top/bottom of the page, the log event number is not updated. This is because setPosition only allows specifying a source but not a reason for the cursor change event, resulting in NotSet reason.
Current Behavior
Keyboard shortcuts CTRL + U/I navigate to top/bottom of page
Log event number in URL doesn't update
Cursor change event has NotSet reason when using setPosition
Proposed Solution
Modify setupCursorExplicitPosChangeCallback to check for NotSet reason in addition to Explicit reason, as setPosition is currently the only way to trigger a cursor change event with NotSet reason.
Background
When using keyboard shortcuts (CTRL + U/I) to navigate to the top/bottom of the page, the log event number is not updated. This is because
setPosition
only allows specifying asource
but not areason
for the cursor change event, resulting inNotSet
reason.Current Behavior
NotSet
reason when usingsetPosition
Proposed Solution
Modify
setupCursorExplicitPosChangeCallback
to check forNotSet
reason in addition toExplicit
reason, assetPosition
is currently the only way to trigger a cursor change event withNotSet
reason.References
The text was updated successfully, but these errors were encountered: