craftpip / angular-confirm

A multipurpose plugin for alert, confirm & dialog for angular1
http://craftpip.github.io/angular-confirm/
MIT License
115 stars 20 forks source link

Close by controller #15

Open anuragsharan opened 7 years ago

anuragsharan commented 7 years ago

I have open the confirm box. Now I want to close this through controller not by clicking the close icon. How can I do that?

phplaw commented 7 years ago

Here is the way I close confirm box in contronller

var x = $ngConfirm(options);
//....
// somewhere in the controller u can call this to close that confirm
x.close();