Matte Bailey
Matte Bailey
I was having a similar problem, but was able to deal with it by watching for the Bootstrap 'hidden.bs.modal' event. Essentially: ``` javascript ModalService.showModal({ ... }.then(function(modal) { modal.element.on('hidden.bs.modal', function ()...
I've added to this since my first comment in October. Hopefully the code below is helpful: In whatever controller you're using `ModalService` in: ``` javascript ModalService.showModal({ templateUrl: "exampleTemplate.html", controller: "ExampleController",...
Hi @tiagomsmagalhaes , If you want to run that code in the error callback of `modal.close`, you would do something like this: ``` javascript modal.close.then(function(result) { $scope.yesNoResult = result ?...
@JacksonMaxfield any thoughts on the best way to proceed here?