()
| 1393 | } |
| 1394 | |
| 1395 | async function openInAppBrowserCommand() { |
| 1396 | const url = await prompt("Enter url", "", "url", { |
| 1397 | placeholder: "http://", |
| 1398 | match: /^https?:\/\/.+/, |
| 1399 | }); |
| 1400 | if (url) acode.exec("open-inapp-browser", url); |
| 1401 | return true; |
| 1402 | } |
| 1403 | |
| 1404 | function adjustFontSize(delta) { |
| 1405 | const current = settings?.value?.fontSize || "12px"; |