In my ionic framework on click of submit button a confirmation popup opens.
I want on click of Yes It is! button
show another similar popup. How can I target another pop up on click of one popup button.
Find Codepen Demo
my controller code below:
.controller('PopupCtrl', function($scope, $ionicPopup){
//confirm Number
$scope.confirmNumber = function(){
var confirmPopup = $ionicPopup.confirm({
title: 'NUMBER CONFIRMATION:',
template: '<span class="numberConfirm">+91 9820098200</span>Is your phone number above correct?',
buttons: [{
text: 'Edit',
type: 'button-block button-outline button-stable',
scope: null,
onTap: function(e) {
}
}, {
text: 'Yes, it is!',
type: 'button-block button-outline button-stable',
onTap: function(e) {
return scope.data.response;
}
}]
});
confirmPopup.then(function(res){
if(res){
}else{
}
});
};
});