I am using Ionic 2 and have a one modals that I would like to have a link on to another modals. when i click button the current modals need to dismiss and open a new modals
firstModals.ts
swipeLeft() {
let modal = Modal.create(swipeLeftSide);
return (this.viewCtrl.dismiss() || this.nav.present(modal)) ;
}