I want it when you click the "ok" button, let it go to the '/ home' template, after closing the modal. Here is the popup code below:
var alertPopup = $ionicPopup.alert({
title: '<b>Pedido Enviado</b>',
subTitle: '<b>Aguarde o número do pedido no seu email. Tempo estimado para entrega de 25 a 35 min</b>',
buttons:[
{
text: 'OK',
type: 'button-assertive',
onTap: function(e){
window.localStorage.clear();
$scope.modal.hide();
templateUrl: '/home'
}
}
]
});