()
| 117 | // pressing 'esc' or using `currentModal.hide()` triggers 'hide', 'hide.bs.modal', 'hidden', 'hidden.bs.modal' |
| 118 | // clicking outside the modal triggers 'hide.bs.modal', 'hidden', 'hidden.bs.modal' (but not 'hide') |
| 119 | hide () { |
| 120 | this.trigger('hide') |
| 121 | if (!this.destroyed) { this.$el.removeClass('fade').modal('hide') } |
| 122 | return __guardMethod__(this.focusTrap, 'deactivate', o => o.deactivate()) |
| 123 | } |
| 124 | |
| 125 | onHidden () { |
| 126 | return this.trigger('hidden') |
no test coverage detected