(el)
| 566 | } |
| 567 | |
| 568 | async function loadAd(el) { |
| 569 | if (!helpers.canShowAds()) return; |
| 570 | try { |
| 571 | if (!(await interstitialAd?.isLoaded())) { |
| 572 | const oldText = el.textContent; |
| 573 | el.textContent = strings["loading..."]; |
| 574 | await interstitialAd?.load(); |
| 575 | el.textContent = oldText; |
| 576 | } |
| 577 | } catch (error) { |
| 578 | console.warn("Failed to load plugin page ad.", error); |
| 579 | } |
| 580 | } |
| 581 | |
| 582 | async function getPurchase(sku) { |
| 583 | const purchases = await helpers.promisify(iap.getPurchases); |