Sha256: a6c63c0c1c0e22abc49077024d5503169f4f9141ea1d267a52972a14a341c519
Contents?: true
Size: 370 Bytes
Versions: 271
Compression:
Stored size: 370 Bytes
Contents
/** * Note: * Check if given node contains focusable elements (excluding thyself) */ const tabbableElements = virtualNode.tabbableElements; if (!tabbableElements) { return false; } // remove thyself from tabbable elements (if exists) const tabbableContentElements = tabbableElements.filter( el => el !== virtualNode ); return tabbableContentElements.length > 0;
Version data entries
271 entries across 271 versions & 1 rubygems