How to catch 'modal.hidden' with multiple modal

Hi Fenglu,

You can try the below. Make sure you assign an id to each modal to make it easy.

$scope.$on('modal.hidden', function(event, modal) {
    console.log('Modal ' + modal.id + ' is hidden!');
});
1 Like