(html, width = 300, height = 300)
| 691 | } |
| 692 | |
| 693 | export function openPopupWithHtml(html, width = 300, height = 300) { |
| 694 | let win = window.open( |
| 695 | "", |
| 696 | "", |
| 697 | `scrollbars=yes,width=${width},height=${height}` |
| 698 | ); |
| 699 | win.document.write(html); |
| 700 | setTimeout(() => { |
| 701 | win.focus(); |
| 702 | }, 500); |
| 703 | return { |
| 704 | closePopup: () => win?.close?.(), |
| 705 | }; |
| 706 | } |
| 707 | |
| 708 | // #endregion |
no test coverage detected