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

60 lines
1.7 KiB
JavaScript
Raw Normal View History

/* ===================================================
2012-06-01 18:04:27 +00:00
* bootstrap-transition.js v2.0.4
2012-01-24 19:08:03 +00:00
* http://twitter.github.com/bootstrap/javascript.html#transitions
* ===================================================
2012-01-15 07:28:48 +00: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 ($) {
2012-01-17 18:32:25 +00:00
$(function () {
2011-12-22 01:38:05 +00:00
"use strict"; // jshint ;_;
2012-03-29 19:48:37 +00:00
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
2012-01-17 18:32:25 +00:00
* ======================================================= */
2012-01-17 18:32:25 +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 otransitionend'
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-17 18:32:25 +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-17 18:32:25 +00:00
}
2012-03-29 20:51:23 +00:00
2012-01-17 18:32:25 +00:00
})()
})
2012-02-14 02:41:02 +00:00
}(window.jQuery);