mirror of
				https://github.com/twbs/bootstrap.git
				synced 2025-10-31 00:04:27 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			48 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* ========================================================================
 | |
|  * Bootstrap: transition.js v3.0.3
 | |
|  * http://getbootstrap.com/javascript/#transitions
 | |
|  * ========================================================================
 | |
|  * Copyright 2013 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, $el = this
 | |
|     $(this).one($.support.transition.end, function () { called = true })
 | |
|     var callback = function () { if (!called) $($el).trigger($.support.transition.end) }
 | |
|     setTimeout(callback, duration)
 | |
|     return this
 | |
|   }
 | |
| 
 | |
|   $(function () {
 | |
|     $.support.transition = transitionEnd()
 | |
|   })
 | |
| 
 | |
| }(jQuery);
 |