| const grandparent = document.getElementById('whiteRoundedMainView') as HTMLElement
|
| const children = grandparent.querySelectorAll<HTMLElement>('*')
|
|
|
| children.forEach((child) => {
|
| if (shouldShowModal) child.tabIndex = -1
|
| else child.removeAttribute('tabIndex')
|
| })
|