How do I manually position a popover in Ionic 2?
I can\'t set the position in a css class, since the popover controller sets the position with an inline style.
if you want the popover next to te button, pass to the function create() the event, like this
//home.html
//home.ts
presentRadioPopover(event) { const popover = this.popoverCtrl.create(HomepopoverPage); popover.present({ ev: event }); }