Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions WebInstall/explainer_same_domain.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,11 @@ To install a web site/app, the site/app would use the promise-based method`navig
/* simple example of using navigator.install */

const installApp = async () => {
try{
try {
const value = await navigator.install('content_id_123');
} catch(err) {
console.error(err.message);
}
catch(err){console.error(err.message)}
};

```
Expand Down