UNPKG

@atlaskit/popup

Version:

A popup displays brief content in an overlay.

10 lines 340 B
const interactiveTags = ['button', 'a', 'input', 'select', 'textarea']; export const isInteractiveElement = element => { if (interactiveTags.includes(element.tagName.toLowerCase())) { return true; } if (element.getAttribute('tabindex') !== null || element.hasAttribute('contenteditable')) { return true; } return false; };