mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-24 17:51:51 +02:00
[web] de-ng sso/oauth/institutional account linking pages GitOrigin-RevId: 50718cefff68142431aa411cb4f8644a3d8ab93f
10 lines
226 B
JavaScript
10 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')
|
|
}
|