()
| 207 | element.offsetHeight; // eslint-disable-line no-unused-expressions |
| 208 | }; |
| 209 | const getjQuery = () => { |
| 210 | if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) { |
| 211 | return window.jQuery; |
| 212 | } |
| 213 | return null; |
| 214 | }; |
| 215 | const DOMContentLoadedCallbacks = []; |
| 216 | const onDOMContentLoaded = callback => { |
| 217 | if (document.readyState === 'loading') { |
no outgoing calls
no test coverage detected