removes enter key listener in favor of focus highlighting to notify user that there
is keyboard navigation available for the onboarding panels. (enter key listener was added
 as keyboard navication for onboarding panels).

bumped version
This commit is contained in:
Kendall Werts
2020-02-26 17:02:01 -06:00
parent d654810d41
commit 5bbf902b47
5 changed files with 20 additions and 22 deletions
-8
View File
@@ -633,14 +633,6 @@ Logic.registerPanel(P_CONTAINERS_LIST, {
case 38:
previous();
break;
case 13: {
const panel = Logic.getCurrentPanelElement();
const button = panel.getElementsByTagName("A")[0];
if(button) {
button.click();
}
break;
}
case 39:
{
const showTabs = element.parentNode.querySelector(".show-tabs");