pwaPromptInstall
Triggers the stored PWA install prompt and runs callbacks for accept or dismiss outcomes.
pwaPromptInstall triggers the install prompt previously captured by pwaCustomInstall.
Action Object
action
string
Must be "pwaPromptInstall"
options.onAccepted
function
Optional callback after the user accepts installation
options.onDismissed
function
Optional callback after the user dismisses installation
Example
{
"action": "pwaPromptInstall"
}Behavior Notes
This action uses
window.deferredPrompt, so it should normally be paired withpwaCustomInstall.If the user accepts the install prompt, BetterForms calls
options.onAccepted()when provided.If the user dismisses the install prompt, BetterForms calls
options.onDismissed()when provided.After the prompt is handled, BetterForms clears
window.deferredPrompt.
Related Pages
Last updated
Was this helpful?