Skip to content

Commit

Permalink
add radix
Browse files Browse the repository at this point in the history
  • Loading branch information
straker committed Nov 20, 2019
1 parent b892ecf commit a978b4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/checks/keyboard/tabindex.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const tabIndex = parseInt(node.getAttribute('tabindex'));
const tabIndex = parseInt(node.getAttribute('tabindex'), 10);

// an invalid tabindex will either return 0 or -1 (based on the element) so
// will never be above 0
Expand Down

0 comments on commit a978b4c

Please sign in to comment.