aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-03-24 19:02:55 -0700
committerJacob Thornton <[email protected]>2012-03-24 19:02:55 -0700
commit0dfff052cb27efdb81883449112adf6e0960aea4 (patch)
treeff910bbcffb847b4accd4b2974dd14c85240d716
parentf02d017ffa2f63609db034410979f62fde328816 (diff)
downloadbootstrap-0dfff052cb27efdb81883449112adf6e0960aea4.tar.xz
bootstrap-0dfff052cb27efdb81883449112adf6e0960aea4.zip
add MSTransitionEnd event to js plugin
-rw-r--r--js/bootstrap-transition.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/js/bootstrap-transition.js b/js/bootstrap-transition.js
index f73de1c58..574f9915d 100644
--- a/js/bootstrap-transition.js
+++ b/js/bootstrap-transition.js
@@ -39,6 +39,8 @@
transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) {
transitionEnd = "transitionend"
+ else if ( $.browser.msie ) {
+ transitionEnd = "MSTransitionEnd"
} else if ( $.browser.opera ) {
transitionEnd = "oTransitionEnd"
}