@ou-imdt/utils
Version:
Utility library for interactive media development
16 lines • 335 B
JavaScript
/**
* CSS selector string that identifies elements that can be focused.
* @type {string}
*/
export default [
'a[href]',
'area[href]',
'button:not([disabled])',
'details',
'iframe',
'input:not([disabled])',
'select:not([disabled])',
'textarea:not([disabled])',
'[contenteditable=true]',
'[tabindex]'
].join(', ');