overleaf/services/web/frontend/js/features/utils/disableElement.js

10 lines
226 B
JavaScript
Raw Normal View History

export function disableElement(el) {
el.setAttribute('disabled', '')
el.setAttribute('aria-disabled', 'true')
}
export function enableElement(el) {
el.removeAttribute('disabled')
el.removeAttribute('aria-disabled')
}