| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  | /* =================================================== | 
					
						
							| 
									
										
										
										
											2012-01-25 03:08:03 +08:00
										 |  |  |  * bootstrap-transition.js v2.0.0 | 
					
						
							|  |  |  |  * http://twitter.github.com/bootstrap/javascript.html#transitions
 | 
					
						
							| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  |  * =================================================== | 
					
						
							| 
									
										
										
										
											2012-01-15 15:28:48 +08:00
										 |  |  |  * Copyright 2012 Twitter, Inc. | 
					
						
							| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Licensed under the Apache License, Version 2.0 (the "License"); | 
					
						
							|  |  |  |  * you may not use this file except in compliance with the License. | 
					
						
							|  |  |  |  * You may obtain a copy of the License at | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Unless required by applicable law or agreed to in writing, software | 
					
						
							|  |  |  |  * distributed under the License is distributed on an "AS IS" BASIS, | 
					
						
							|  |  |  |  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
					
						
							|  |  |  |  * See the License for the specific language governing permissions and | 
					
						
							|  |  |  |  * limitations under the License. | 
					
						
							|  |  |  |  * ========================================================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-18 02:32:25 +08:00
										 |  |  | !function( $ ) { | 
					
						
							| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-18 02:32:25 +08:00
										 |  |  |   $(function () { | 
					
						
							| 
									
										
										
										
											2011-12-22 09:38:05 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-18 02:32:25 +08:00
										 |  |  |     "use strict" | 
					
						
							| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-18 02:32:25 +08:00
										 |  |  |     /* CSS TRANSITION SUPPORT (https://gist.github.com/373874) | 
					
						
							|  |  |  |      * ======================================================= */ | 
					
						
							| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-18 02:32:25 +08:00
										 |  |  |     $.support.transition = (function () { | 
					
						
							|  |  |  |       var thisBody = document.body || document.documentElement | 
					
						
							|  |  |  |         , thisStyle = thisBody.style | 
					
						
							|  |  |  |         , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined | 
					
						
							| 
									
										
										
										
											2011-12-15 10:45:33 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-18 02:32:25 +08:00
										 |  |  |       return support && { | 
					
						
							|  |  |  |         end: (function () { | 
					
						
							|  |  |  |           var transitionEnd = "TransitionEnd" | 
					
						
							|  |  |  |           if ( $.browser.webkit ) { | 
					
						
							|  |  |  |           	transitionEnd = "webkitTransitionEnd" | 
					
						
							|  |  |  |           } else if ( $.browser.mozilla ) { | 
					
						
							|  |  |  |           	transitionEnd = "transitionend" | 
					
						
							|  |  |  |           } else if ( $.browser.opera ) { | 
					
						
							|  |  |  |           	transitionEnd = "oTransitionEnd" | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |           return transitionEnd | 
					
						
							|  |  |  |         }()) | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     })() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  |    | 
					
						
							|  |  |  | }( window.jQuery ) |