2013-05-22 10:30:33 +08:00
|
|
|
/* ========================================================================
|
2015-06-17 00:10:22 +08:00
|
|
|
* Bootstrap: transition.js v3.3.5
|
2013-10-30 01:10:47 +08:00
|
|
|
* http://getbootstrap.com/javascript/#transitions
|
2013-05-22 10:30:33 +08:00
|
|
|
* ========================================================================
|
2015-01-01 08:23:48 +08:00
|
|
|
* Copyright 2011-2015 Twitter, Inc.
|
2013-12-19 07:28:08 +08:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2013-05-22 10:30:33 +08:00
|
|
|
* ======================================================================== */
|
2011-12-15 10:45:33 +08:00
|
|
|
|
2012-03-25 09:59:04 +08:00
|
|
|
|
2014-06-24 02:07:18 +08:00
|
|
|
+function ($) {
|
|
|
|
'use strict';
|
2014-06-10 13:18:05 +08:00
|
|
|
|
2014-06-24 02:07:18 +08:00
|
|
|
// CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
|
|
|
|
// ============================================================
|
2011-12-15 10:45:33 +08:00
|
|
|
|
2014-06-24 02:07:18 +08:00
|
|
|
function transitionEnd() {
|
|
|
|
var el = document.createElement('bootstrap')
|
2011-12-15 10:45:33 +08:00
|
|
|
|
2014-06-24 02:07:18 +08:00
|
|
|
var transEndEventNames = {
|
|
|
|
WebkitTransition : 'webkitTransitionEnd',
|
|
|
|
MozTransition : 'transitionend',
|
|
|
|
OTransition : 'oTransitionEnd otransitionend',
|
|
|
|
transition : 'transitionend'
|
2013-05-17 02:06:30 +08:00
|
|
|
}
|
2013-12-25 04:40:24 +08:00
|
|
|
|
2014-06-24 02:07:18 +08:00
|
|
|
for (var name in transEndEventNames) {
|
|
|
|
if (el.style[name] !== undefined) {
|
|
|
|
return { end: transEndEventNames[name] }
|
|
|
|
}
|
2014-06-11 10:56:08 +08:00
|
|
|
}
|
2014-06-13 02:11:04 +08:00
|
|
|
|
2014-06-24 02:07:18 +08: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-13 02:11:04 +08:00
|
|
|
}
|
2014-06-24 02:07:18 +08:00
|
|
|
}
|
2013-05-17 08:18:15 +08:00
|
|
|
})
|
2012-02-14 10:41:02 +08:00
|
|
|
|
2014-06-24 02:07:18 +08:00
|
|
|
}(jQuery);
|