()
| 218 | }; |
| 219 | |
| 220 | const waitUntilReady = () => { |
| 221 | return Promise.all( |
| 222 | Array.from(document.querySelectorAll('ion-menu')).map( |
| 223 | (menu) => new Promise((resolve) => componentOnReady(menu, resolve)) |
| 224 | ) |
| 225 | ); |
| 226 | }; |
| 227 | |
| 228 | registerAnimation('reveal', menuRevealAnimation); |
| 229 | registerAnimation('push', menuPushAnimation); |
no test coverage detected