diff options
| author | Jacob Thornton <[email protected]> | 2012-03-24 19:02:55 -0700 |
|---|---|---|
| committer | Jacob Thornton <[email protected]> | 2012-03-24 19:02:55 -0700 |
| commit | 0dfff052cb27efdb81883449112adf6e0960aea4 (patch) | |
| tree | ff910bbcffb847b4accd4b2974dd14c85240d716 | |
| parent | f02d017ffa2f63609db034410979f62fde328816 (diff) | |
| download | bootstrap-0dfff052cb27efdb81883449112adf6e0960aea4.tar.xz bootstrap-0dfff052cb27efdb81883449112adf6e0960aea4.zip | |
add MSTransitionEnd event to js plugin
| -rw-r--r-- | js/bootstrap-transition.js | 2 |
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" } |
