Sha256: 62db945648585b8de4d60aa419dee5405b628ac4469b456bbd2fa0071cb41139
Contents?: true
Size: 284 Bytes
Versions: 271
Compression:
Stored size: 284 Bytes
Contents
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 // @see https://www.w3.org/TR/html51/editing.html#the-tabindex-attribute return isNaN(tabIndex) ? true : tabIndex <= 0;
Version data entries
271 entries across 271 versions & 1 rubygems