Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tabbable

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tabbable - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

4

CHANGELOG.md
# Changelog
## 1.0.6
- Check `tabindex` attribute (via `getAttribute`), in addition to `node.tabIndex`, to fix handling of SVGs with `tabindex="-1"` in IE.
## 1.0.5

@@ -4,0 +8,0 @@

2

index.js

@@ -23,3 +23,3 @@ module.exports = function(el) {

candidate = candidates[i];
candidateIndex = candidate.tabIndex;
candidateIndex = parseInt(candidate.getAttribute('tabindex'), 10) || candidate.tabIndex;

@@ -26,0 +26,0 @@ if (

{
"name": "tabbable",
"version": "1.0.5",
"version": "1.0.6",
"description": "Returns an array of all tabbable DOM nodes within a containing node.",

@@ -5,0 +5,0 @@ "main": "index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc