/* ======================================================================== * Bootstrap: transition.js v3.3.7 * http://getbootstrap.com/javascript/#transitions * ======================================================================== * Copyright 2011-2016 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) * ======================================================================== */ +function ($) { 'use strict'; // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) // ============================================================ function transitionEnd() { var el = document.createElement('bootstrap') var transEndEventNames = { WebkitTransition : 'webkitTransitionEnd', MozTransition : 'transitionend', OTransition : 'oTransitionEnd otransitionend', transition : 'transitionend' } for (var name in transEndEventNames) { if (el.style[name] !== undefined) { return { end: transEndEventNames[name] } } } 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) } } }) }(jQuery);
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
tests | Folder | 0755 |
|
|
.jscsrc | File | 2.1 KB | 0644 |
|
.jshintrc | File | 277 B | 0644 |
|
affix.js | File | 4.72 KB | 0644 |
|
alert.js | File | 2.23 KB | 0644 |
|
button.js | File | 3.73 KB | 0644 |
|
carousel.js | File | 6.97 KB | 0644 |
|
collapse.js | File | 5.85 KB | 0644 |
|
dropdown.js | File | 4.63 KB | 0644 |
|
modal.js | File | 9.75 KB | 0644 |
|
popover.js | File | 3.09 KB | 0644 |
|
scrollspy.js | File | 4.6 KB | 0644 |
|
tab.js | File | 3.81 KB | 0644 |
|
tooltip.js | File | 16.33 KB | 0644 |
|
transition.js | File | 1.79 KB | 0644 |
|