From 5f65df9e2db7c16c3c64930331a467e18501e20c Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Sat, 10 Sep 2011 14:04:22 -0700 Subject: add some more events to alerts and modal and update docs --- js/bootstrap-modal.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'js/bootstrap-modal.js') diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js index 54cbad4b11..de972a8aa1 100644 --- a/js/bootstrap-modal.js +++ b/js/bootstrap-modal.js @@ -66,7 +66,7 @@ .show() setTimeout(function () { - that.$element.addClass('in') + that.$element.addClass('in').trigger('modal:shown') that.$backdrop && that.$backdrop.addClass('in') }, 1) @@ -86,8 +86,10 @@ this.$element.removeClass('in') function removeElement () { - that.$element.unbind(transitionEnd) - that.$element.detach() + that.$element + .unbind(transitionEnd) + .detach() + .trigger('modal:hidden') } $.support.transition && this.$element.hasClass('fade') ? -- cgit v1.2.3