@mmpco wrote:
I was wondering if it is possible to make an ionic confirm alert but when someone click on install it will link them over to a web URL?
installAlert() { let confirm = Alert.create({ title: 'mmpunited.com would like to install "MMP United" ', message: '', buttons: [ { text: 'Cancel', handler: () => { console.log('Canceled'); } }, { text: 'Install', handler: () => { console.log('Installing App!'); } } ] }); this.nav.present(confirm); }
Posts: 1
Participants: 1