How to disable popover close animation?

Hi,
I want to close my popover as fast as possible to be able to click again without having to wait till the end of an animation.
So far i can do it with this trick with a cancel button:

cancel(){
this.viewCtrl.dismiss({},null,{animate: false})
}

But i dont know how to do it if i click on the background since backdrop dismiss should be true in my app :confused: .

Is there any way to stop the close animation or be able to start the (press)=ā€œpresentPopoverā€ while the last one is closing?

@JosefHase, did you find a solution for this?