Is there any reason why the mouseenter event is applied to targets option, while focusin event is hardcoded to 'li, or am I missing some vital functionality?
$menu.on('mouseenter.superfish', targets, over)
vs
$menu.on('focusin.superfish', 'li', over)
Is there any reason why the
mouseenterevent is applied totargetsoption, whilefocusinevent is hardcoded to'li, or am I missing some vital functionality?vs