Ionic 3 Rejeter la toile de fond d'alerte

let alert = this.alertCtrl.create({
    title: 'New Friend!',
    subTitle: 'Lorem ipsum',
    buttons: ['OK'],
  	// line BELOW
	enableBackdropDismiss: false // <- Here! :)
});

alert.present();
GutoTrosla