docs(popover): add missing comma in example (#17401)

This commit is contained in:
octicon-git-branch(16/)
octicon-tag(16/)
Jesse Desaever
2019-02-12 21:16:20 +01:00
committed by Brandy Carney
gitea-unlock(16/)
parent ba4e117e55
commit d0a9fac5c7
octicon-diff(16/tw-mr-1) 2 changed files with 2 additions and 2 deletions

2
core/src/components/popover/readme.md
View File

@@ -52,8 +52,8 @@ async function presentPopover(ev) {
const popover = await popoverController.create({
component: 'popover-example-page',
translucent: true
event: ev,
translucent: true
});
return await popover.present();
}

2
core/src/components/popover/usage/javascript.md
View File

@@ -5,8 +5,8 @@ async function presentPopover(ev) {
const popover = await popoverController.create({
component: 'popover-example-page',
translucent: true
event: ev,
translucent: true
});
return await popover.present();
}