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.1.2 to 1.1.3

4

CHANGELOG.md
# Changelog
## 1.1.3
- Fix bug causing SVG elements to precede elements they should follow in the tab order in IE.
## 1.1.2

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

5

index.js

@@ -36,6 +36,7 @@ module.exports = function(el, options) {

var candidate, candidateIndex;
var candidate, candidateIndexAttr, candidateIndex;
for (var i = 0, l = candidates.length; i < l; i++) {
candidate = candidates[i];
candidateIndex = parseInt(candidate.getAttribute('tabindex'), 10) || candidate.tabIndex;
candidateIndexAttr = parseInt(candidate.getAttribute('tabindex'), 10)
candidateIndex = isNaN(candidateIndexAttr) ? candidate.tabIndex : candidateIndexAttr;

@@ -42,0 +43,0 @@ if (

{
"name": "tabbable",
"version": "1.1.2",
"version": "1.1.3",
"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