mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
c9e22f7ddf
[web] de-ng sso/oauth/institutional account linking pages GitOrigin-RevId: 50718cefff68142431aa411cb4f8644a3d8ab93f
9 lines
226 B
JavaScript
9 lines
226 B
JavaScript
export function disableElement(el) {
|
|
el.setAttribute('disabled', '')
|
|
el.setAttribute('aria-disabled', 'true')
|
|
}
|
|
|
|
export function enableElement(el) {
|
|
el.removeAttribute('disabled')
|
|
el.removeAttribute('aria-disabled')
|
|
}
|