0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-17 09:52:29 +01:00

add MSTransitionEnd event to js plugin

This commit is contained in:
Jacob Thornton 2012-03-24 19:02:55 -07:00
parent f02d017ffa
commit 0dfff052cb

View File

@ -39,6 +39,8 @@
transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) {
transitionEnd = "transitionend"
else if ( $.browser.msie ) {
transitionEnd = "MSTransitionEnd"
} else if ( $.browser.opera ) {
transitionEnd = "oTransitionEnd"
}