twbs--bootstrap/js/bootstrap-transition.js

60 lines
1.7 KiB
JavaScript
Raw Normal View History

/* ===================================================
2012-11-05 12:32:48 -05:00
* bootstrap-transition.js v2.2.2
2012-01-24 14:08:03 -05:00
* http://twitter.github.com/bootstrap/javascript.html#transitions
* ===================================================
2012-01-15 02:28:48 -05:00
* 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 ($) {
"use strict"; // jshint ;_;
2011-12-21 20:38:05 -05:00
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
* ======================================================= */
$(function () {
2012-01-17 13:32:25 -05:00
$.support.transition = (function () {
2012-03-29 15:35:06 -04:00
2012-03-29 16:51:23 -04:00
var transitionEnd = (function () {
var el = document.createElement('bootstrap')
, transEndEventNames = {
'WebkitTransition' : 'webkitTransitionEnd'
, 'MozTransition' : 'transitionend'
, 'OTransition' : 'oTransitionEnd otransitionend'
2012-03-29 16:51:23 -04:00
, 'transition' : 'transitionend'
2012-03-29 15:35:06 -04:00
}
2012-03-29 16:51:23 -04:00
, name
for (name in transEndEventNames){
if (el.style[name] !== undefined) {
return transEndEventNames[name]
2012-01-17 13:32:25 -05:00
}
2012-03-29 16:51:23 -04:00
}
2012-03-29 15:35:06 -04:00
2012-03-29 16:55:56 -04:00
}())
2012-03-29 15:35:06 -04:00
2012-03-29 16:51:23 -04:00
return transitionEnd && {
end: transitionEnd
2012-01-17 13:32:25 -05:00
}
2012-03-29 16:51:23 -04:00
2012-01-17 13:32:25 -05:00
})()
})
2012-02-13 21:41:02 -05:00
}(window.jQuery);