(e: any)
| 1018 | } |
| 1019 | }; |
| 1020 | const newWindowHandler = (e: any) => { |
| 1021 | e.preventDefault(); |
| 1022 | const newUrl = e.detail.url; |
| 1023 | fireAndForget(() => openLink(newUrl, true)); |
| 1024 | }; |
| 1025 | const startLoadingHandler = () => { |
| 1026 | model.setRefreshIcon("xmark-large"); |
| 1027 | model.setIsLoading(true); |
nothing calls this directly
no test coverage detected