1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 23:59:53 +02:00

rebuild css, add preserve-3d for faster animations, fix whitespace in mixins.less

This commit is contained in:
Jacob Thornton
2011-11-03 14:45:53 -07:00
parent d811808494
commit 1b4b97d530
5 changed files with 21 additions and 15 deletions

View File

@@ -40,11 +40,11 @@
if ( $.support.transition ) {
transitionEnd = "TransitionEnd"
if ( $.browser.webkit ) {
transitionEnd = "webkitTransitionEnd"
transitionEnd = "webkitTransitionEnd"
} else if ( $.browser.mozilla ) {
transitionEnd = "transitionend"
transitionEnd = "transitionend"
} else if ( $.browser.opera ) {
transitionEnd = "oTransitionEnd"
transitionEnd = "oTransitionEnd"
}
}