i developing application using angularjs popup using ngdialog. 1 of requirement is.once close ngdialog popup.i need redirect current page home page.
my code :
ngdialog.open({ template:'<div style="margin-top:10px;" >please try after time.</div>', plain:true, closebyescape : false, closebydocument : false }); is possible?
hei, can try use preclosecallback in order redirect desired page (home page). you'll need $window injection , can use :
preclosecallback: function(value) { var url = "#/home" // or whatever route $window.location = url return true } hope it'll help. best!
Comments
Post a Comment