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