It looks like the auto-tracking code (specifically _tagClicks()) is binding event handlers to mousedown, and as a result, it won't track the activity of keyboard users who press Enter to activate links.
I'm not sure if this is a big deal or not, but I figured I'd mention it.
I think it could probably be fixed by binding to keydown in _tagClicks() and filtering based on whether Enter was pressed.
It looks like the auto-tracking code (specifically
_tagClicks()
) is binding event handlers tomousedown
, and as a result, it won't track the activity of keyboard users who press Enter to activate links.I'm not sure if this is a big deal or not, but I figured I'd mention it.
I think it could probably be fixed by binding to
keydown
in_tagClicks()
and filtering based on whether Enter was pressed.