I am trying to redirest to home page after sweet alert from another page but it is not working , $location.path is not working but console.log("Redirect is working") in the code
setTimeout(function () {
swal({
title: "HI",
text: "Welcome.",
type: "warning",
confirmButtonText: "OK"
},
function () {
$location.path("home");
console.log("Redirect is working");
});
}, 100);