2013-05-22 04:30:33 +02:00
|
|
|
/* ========================================================================
|
2014-06-26 18:13:24 +02:00
|
|
|
* Bootstrap: transition.js v3.2.0
|
2013-10-29 18:10:47 +01:00
|
|
|
* http://getbootstrap.com/javascript/#transitions
|
2013-05-22 04:30:33 +02:00
|
|
|
* ========================================================================
|
2014-01-07 01:05:24 +01:00
|
|
|
* Copyright 2011-2014 Twitter, Inc.
|
2013-12-19 00:28:08 +01:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2013-05-22 04:30:33 +02:00
|
|
|
* ======================================================================== */
|
2011-12-15 03:45:33 +01:00
|
|
|
|
2012-03-25 03:59:04 +02:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
+function ($) {
|
|
|
|
'use strict';
|
2014-06-10 07:18:05 +02:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
|
|
|
// ============================================================
|
2011-12-15 03:45:33 +01:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
function transitionEnd() {
|
|
|
|
var el = document.createElement('bootstrap')
|
2011-12-15 03:45:33 +01:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
var transEndEventNames = {
|
|
|
|
WebkitTransition : 'webkitTransitionEnd',
|
|
|
|
MozTransition : 'transitionend',
|
|
|
|
OTransition : 'oTransitionEnd otransitionend',
|
|
|
|
transition : 'transitionend'
|
2013-05-16 20:06:30 +02:00
|
|
|
}
|
2013-12-24 21:40:24 +01:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
for (var name in transEndEventNames) {
|
|
|
|
if (el.style[name] !== undefined) {
|
|
|
|
return { end: transEndEventNames[name] }
|
|
|
|
}
|
2014-06-11 04:56:08 +02:00
|
|
|
}
|
2014-06-12 20:11:04 +02:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
return false // explicit for ie8 ( ._.)
|
|
|
|
}
|
|
|
|
|
|
|
|
// http://blog.alexmaccaw.com/css-transitions
|
|
|
|
$.fn.emulateTransitionEnd = function (duration) {
|
|
|
|
var called = false
|
|
|
|
var $el = this
|
|
|
|
$(this).one('bsTransitionEnd', function () { called = true })
|
|
|
|
var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
|
|
|
|
setTimeout(callback, duration)
|
|
|
|
return this
|
|
|
|
}
|
|
|
|
|
|
|
|
$(function () {
|
|
|
|
$.support.transition = transitionEnd()
|
|
|
|
|
|
|
|
if (!$.support.transition) return
|
|
|
|
|
|
|
|
$.event.special.bsTransitionEnd = {
|
|
|
|
bindType: $.support.transition.end,
|
|
|
|
delegateType: $.support.transition.end,
|
|
|
|
handle: function (e) {
|
|
|
|
if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments)
|
2014-06-12 20:11:04 +02:00
|
|
|
}
|
2014-06-23 20:07:18 +02:00
|
|
|
}
|
2013-05-17 02:18:15 +02:00
|
|
|
})
|
2012-02-14 03:41:02 +01:00
|
|
|
|
2014-06-23 20:07:18 +02:00
|
|
|
}(jQuery);
|