Skip to content

Commit

Permalink
fix(ui5-list): enable backward navigation with SHIFT+TAB
Browse files Browse the repository at this point in the history
After major refactoring of the PseudoEvents onsaptabprevious has stopped working.
Furthermore, the _handleTabPrevious method did not exist.
FIXES: #192
  • Loading branch information
ilhan007 committed Mar 15, 2019
1 parent 177de47 commit 73ec32c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/main/src/ListItemBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class ListItemBase extends WebComponent {
}
}

onsaptabprevious(event) {
_handleTabPrevious(event) {
const target = event.target.shadowRoot.activeElement;

if (this.shouldForwardTabBefore(target)) {
Expand Down

0 comments on commit 73ec32c

Please sign in to comment.