mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-08 15:00:59 +00:00
add missing closing brace
This commit is contained in:
parent
0dfff052cb
commit
3e7920820a
3 changed files with 3 additions and 1 deletions
Binary file not shown.
2
docs/assets/js/bootstrap-transition.js
vendored
2
docs/assets/js/bootstrap-transition.js
vendored
|
|
@ -39,6 +39,8 @@
|
|||
transitionEnd = "webkitTransitionEnd"
|
||||
} else if ( $.browser.mozilla ) {
|
||||
transitionEnd = "transitionend"
|
||||
} else if ( $.browser.msie ) {
|
||||
transitionEnd = "MSTransitionEnd"
|
||||
} else if ( $.browser.opera ) {
|
||||
transitionEnd = "oTransitionEnd"
|
||||
}
|
||||
|
|
|
|||
2
js/bootstrap-transition.js
vendored
2
js/bootstrap-transition.js
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue