WICG / manifest-incubations

Before install prompt API for installing web applications
https://wicg.github.io/manifest-incubations/
Other
98 stars 30 forks source link

Fix typo in code example #93

Closed FluorescentHallucinogen closed 3 months ago

FluorescentHallucinogen commented 7 months ago

The following code is invalid:

const { userChoice } = await event.prompt();

It must be replaced by either:

const userChoice = await event.prompt();

or by:

const { outcome, platform } = await event.prompt();

Preview | Diff

w3cbot commented 7 months ago

FluorescentHallucinogen marked as non substantive for IPR from ash-nazg.

FluorescentHallucinogen commented 6 months ago

@alancutter @mgiuca PTAL. 😉

FluorescentHallucinogen commented 6 months ago

@aarongustafson Could you please merge this pull request? ;)

FluorescentHallucinogen commented 3 months ago

Ping.