(listener: () => void)
| 29 | * @param { Function } listener |
| 30 | */ |
| 31 | const attachBoot = (listener: () => void) => { |
| 32 | if (!booted) { |
| 33 | eventProvider.attachEvent("boot", listener); |
| 34 | return; |
| 35 | } |
| 36 | |
| 37 | listener(); |
| 38 | }; |
| 39 | |
| 40 | /** |
| 41 | * This function may now be called twice - once without OpenUI5Support, and then later again, when OpenUI5 is loaded dynamically |
no test coverage detected
searching dependent graphs…