Commit 3e792082 authored by Jacob Thornton's avatar Jacob Thornton

add missing closing brace

parent 0dfff052
......@@ -39,6 +39,8 @@
transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) {
transitionEnd = "transitionend"
} else if ( $.browser.msie ) {
transitionEnd = "MSTransitionEnd"
} else if ( $.browser.opera ) {
transitionEnd = "oTransitionEnd"
}
......
......@@ -39,7 +39,7 @@
transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) {
transitionEnd = "transitionend"
else if ( $.browser.msie ) {
} else if ( $.browser.msie ) {
transitionEnd = "MSTransitionEnd"
} else if ( $.browser.opera ) {
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