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