Commit 0dfff052 authored by Jacob Thornton's avatar Jacob Thornton

add MSTransitionEnd event to js plugin

parent f02d017f
...@@ -39,6 +39,8 @@ ...@@ -39,6 +39,8 @@
transitionEnd = "webkitTransitionEnd" transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) { } else if ( $.browser.mozilla ) {
transitionEnd = "transitionend" transitionEnd = "transitionend"
else if ( $.browser.msie ) {
transitionEnd = "MSTransitionEnd"
} else if ( $.browser.opera ) { } else if ( $.browser.opera ) {
transitionEnd = "oTransitionEnd" transitionEnd = "oTransitionEnd"
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment