2011-12-14 21:45:33 -05:00
|
|
|
/* ===================================================
|
2012-12-10 21:31:04 -05:00
|
|
|
* bootstrap-transition.js v2.2.3
|
2012-01-24 14:08:03 -05:00
|
|
|
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
2011-12-14 21:45:33 -05:00
|
|
|
* ===================================================
|
2012-01-15 02:28:48 -05:00
|
|
|
* Copyright 2012 Twitter, Inc.
|
2011-12-14 21:45:33 -05:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* ========================================================== */
|
|
|
|
|
2012-03-24 21:59:04 -04:00
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
!function ($) {
|
2011-12-14 21:45:33 -05:00
|
|
|
|
2012-09-20 19:50:36 -04:00
|
|
|
"use strict"; // jshint ;_;
|
2011-12-21 20:38:05 -05:00
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2012-09-20 19:50:36 -04:00
|
|
|
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
|
|
|
* ======================================================= */
|
2011-12-14 21:45:33 -05:00
|
|
|
|
2012-09-20 19:50:36 -04:00
|
|
|
$(function () {
|
2011-12-14 21:45:33 -05:00
|
|
|
|
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'
|
2012-07-23 14:55:27 -04:00
|
|
|
, '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
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
}(window.jQuery);
|