bootstrap/docs/assets/js/bootstrap-transition.js

60 lines
1.7 KiB
JavaScript
Raw Normal View History

2012-01-31 21:58:28 +00:00
/* ===================================================
2012-03-12 21:09:38 +00:00
* bootstrap-transition.js v2.0.2
2012-01-31 21:58:28 +00:00
* http://twitter.github.com/bootstrap/javascript.html#transitions
* ===================================================
* Copyright 2012 Twitter, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================== */
!function ( $ ) {
2012-01-31 21:58:28 +00:00
$(function () {
"use strict"
2012-03-29 19:48:37 +00:00
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
2012-01-31 21:58:28 +00:00
* ======================================================= */
$.support.transition = (function () {
2012-03-29 19:35:06 +00:00
2012-03-29 20:51:23 +00:00
var transitionEnd = (function () {
var el = document.createElement('bootstrap')
, transEndEventNames = {
'WebkitTransition' : 'webkitTransitionEnd'
, 'MozTransition' : 'transitionend'
, 'OTransition' : 'oTransitionEnd'
, 'msTransition' : 'MSTransitionEnd'
2012-03-29 20:51:23 +00:00
, 'transition' : 'transitionend'
2012-03-29 19:35:06 +00:00
}
2012-03-29 20:51:23 +00:00
, name
for (name in transEndEventNames){
if (el.style[name] !== undefined) {
return transEndEventNames[name]
2012-01-31 21:58:28 +00:00
}
2012-03-29 20:51:23 +00:00
}
2012-03-29 19:35:06 +00:00
2012-03-29 20:55:56 +00:00
}())
2012-03-29 19:35:06 +00:00
2012-03-29 20:51:23 +00:00
return transitionEnd && {
end: transitionEnd
2012-01-31 21:58:28 +00:00
}
2012-03-29 20:51:23 +00:00
2012-01-31 21:58:28 +00:00
})()
})
2012-02-14 02:41:02 +00:00
}( window.jQuery );