index.ts
15 lines
| 1 | import './css/bfcm2025.scss'; |
| 2 | |
| 3 | document.addEventListener('DOMContentLoaded', () => { |
| 4 | const adminRoot = document.querySelector('#give-admin-campaigns-root, #give-admin-donations-root, #give-admin-donors-root, #give-admin-subscriptions-root'); |
| 5 | const bfcmBanner2025 = document.querySelector('#givewp-bfcm-2025-banner'); |
| 6 | |
| 7 | if (adminRoot) { |
| 8 | const header = adminRoot.querySelector('article > header'); |
| 9 | |
| 10 | if (header) { |
| 11 | header.insertAdjacentElement('afterend', bfcmBanner2025); |
| 12 | } |
| 13 | } |
| 14 | }); |
| 15 |