| 12345678910111213141516171819 |
- import { isBootstrap5 } from './bootstrap-5'
- export function disableElement(el) {
- if (isBootstrap5() && el.tagName.toLowerCase() === 'a') {
- el.classList.add('disabled')
- } else {
- el.disabled = true
- }
- el.setAttribute('aria-disabled', 'true')
- }
- export function enableElement(el) {
- if (isBootstrap5() && el.tagName.toLowerCase() === 'a') {
- el.classList.remove('disabled')
- } else {
- el.disabled = false
- }
- el.removeAttribute('aria-disabled')
- }
|