()
| 605 | } |
| 606 | |
| 607 | whenLinksReady() { |
| 608 | let templates = this.querySelectorAll( |
| 609 | 'map-link[rel=image],map-link[rel=tile],map-link[rel=features],map-link[rel=query]' |
| 610 | ); |
| 611 | let linksReady = []; |
| 612 | for (let link of [...templates]) { |
| 613 | linksReady.push(link.whenReady()); |
| 614 | } |
| 615 | return Promise.allSettled(linksReady); |
| 616 | } |
| 617 | } |
no test coverage detected