| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  | /* ========================================================== | 
					
						
							| 
									
										
										
										
											2012-09-06 01:00:57 +08:00
										 |  |  |  * bootstrap-carousel.js v2.1.2 | 
					
						
							| 
									
										
										
										
											2012-01-25 03:08:03 +08:00
										 |  |  |  * http://twitter.github.com/bootstrap/javascript.html#carousel
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |  * ========================================================== | 
					
						
							| 
									
										
										
										
											2012-01-15 15:28:48 +08:00
										 |  |  |  * Copyright 2012 Twitter, Inc. | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +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-04-15 07:29:53 +08:00
										 |  |  | !function ($) { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   "use strict"; // jshint ;_;
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  /* CAROUSEL CLASS DEFINITION | 
					
						
							|  |  |  |   * ========================= */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |   var Carousel = function (element, options) { | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     this.$element = $(element) | 
					
						
							| 
									
										
										
										
											2012-03-20 06:48:57 +08:00
										 |  |  |     this.options = options | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |     this.options.slide && this.slide(this.options.slide) | 
					
						
							| 
									
										
										
										
											2012-02-25 13:51:39 +08:00
										 |  |  |     this.options.pause == 'hover' && this.$element | 
					
						
							|  |  |  |       .on('mouseenter', $.proxy(this.pause, this)) | 
					
						
							|  |  |  |       .on('mouseleave', $.proxy(this.cycle, this)) | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Carousel.prototype = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 08:49:51 +08:00
										 |  |  |     cycle: function (e) { | 
					
						
							|  |  |  |       if (!e) this.paused = false | 
					
						
							| 
									
										
										
										
											2012-03-20 06:48:57 +08:00
										 |  |  |       this.options.interval | 
					
						
							| 
									
										
										
										
											2012-04-15 08:49:51 +08:00
										 |  |  |         && !this.paused | 
					
						
							| 
									
										
										
										
											2012-03-20 06:48:57 +08:00
										 |  |  |         && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |   , to: function (pos) { | 
					
						
							| 
									
										
										
										
											2012-06-03 13:10:35 +08:00
										 |  |  |       var $active = this.$element.find('.item.active') | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |         , children = $active.parent().children() | 
					
						
							|  |  |  |         , activePos = children.index($active) | 
					
						
							|  |  |  |         , that = this | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (pos > (children.length - 1) || pos < 0) return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (this.sliding) { | 
					
						
							|  |  |  |         return this.$element.one('slid', function () { | 
					
						
							|  |  |  |           that.to(pos) | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (activePos == pos) { | 
					
						
							|  |  |  |         return this.pause().cycle() | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return this.slide(pos > activePos ? 'next' : 'prev', $(children[pos])) | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 08:49:51 +08:00
										 |  |  |   , pause: function (e) { | 
					
						
							|  |  |  |       if (!e) this.paused = true | 
					
						
							| 
									
										
										
										
											2012-06-04 02:24:19 +08:00
										 |  |  |       if (this.$element.find('.next, .prev').length && $.support.transition.end) { | 
					
						
							| 
									
										
										
										
											2012-06-03 11:28:08 +08:00
										 |  |  |         this.$element.trigger($.support.transition.end) | 
					
						
							|  |  |  |         this.cycle() | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |       clearInterval(this.interval) | 
					
						
							| 
									
										
										
										
											2012-02-17 12:22:01 +08:00
										 |  |  |       this.interval = null | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |   , next: function () { | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |       if (this.sliding) return | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this.slide('next') | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |   , prev: function () { | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |       if (this.sliding) return | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       return this.slide('prev') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |   , slide: function (type, next) { | 
					
						
							| 
									
										
										
										
											2012-06-08 21:19:08 +08:00
										 |  |  |       var $active = this.$element.find('.item.active') | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |         , $next = next || $active[type]() | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |         , isCycling = this.interval | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         , direction = type == 'next' ? 'left' : 'right' | 
					
						
							|  |  |  |         , fallback  = type == 'next' ? 'first' : 'last' | 
					
						
							|  |  |  |         , that = this | 
					
						
							| 
									
										
										
										
											2012-06-03 09:06:00 +08:00
										 |  |  |         , e = $.Event('slide', { | 
					
						
							|  |  |  |             relatedTarget: $next[0] | 
					
						
							|  |  |  |           }) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |       this.sliding = true | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       isCycling && this.pause() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |       $next = $next.length ? $next : this.$element.find('.item')[fallback]() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-21 14:01:38 +08:00
										 |  |  |       if ($next.hasClass('active')) return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-20 12:39:39 +08:00
										 |  |  |       if ($.support.transition && this.$element.hasClass('slide')) { | 
					
						
							| 
									
										
										
										
											2012-03-25 09:20:09 +08:00
										 |  |  |         this.$element.trigger(e) | 
					
						
							|  |  |  |         if (e.isDefaultPrevented()) return | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         $next.addClass(type) | 
					
						
							|  |  |  |         $next[0].offsetWidth // force reflow
 | 
					
						
							|  |  |  |         $active.addClass(direction) | 
					
						
							|  |  |  |         $next.addClass(direction) | 
					
						
							|  |  |  |         this.$element.one($.support.transition.end, function () { | 
					
						
							|  |  |  |           $next.removeClass([type, direction].join(' ')).addClass('active') | 
					
						
							|  |  |  |           $active.removeClass(['active', direction].join(' ')) | 
					
						
							| 
									
										
										
										
											2012-01-09 05:39:27 +08:00
										 |  |  |           that.sliding = false | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |           setTimeout(function () { that.$element.trigger('slid') }, 0) | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |         }) | 
					
						
							| 
									
										
										
										
											2012-03-20 12:39:39 +08:00
										 |  |  |       } else { | 
					
						
							| 
									
										
										
										
											2012-03-25 09:20:09 +08:00
										 |  |  |         this.$element.trigger(e) | 
					
						
							|  |  |  |         if (e.isDefaultPrevented()) return | 
					
						
							| 
									
										
										
										
											2012-03-20 12:39:39 +08:00
										 |  |  |         $active.removeClass('active') | 
					
						
							|  |  |  |         $next.addClass('active') | 
					
						
							|  |  |  |         this.sliding = false | 
					
						
							|  |  |  |         this.$element.trigger('slid') | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |       } | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       isCycling && this.cycle() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return this | 
					
						
							| 
									
										
										
										
											2012-01-03 08:04:01 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  /* CAROUSEL PLUGIN DEFINITION | 
					
						
							|  |  |  |   * ========================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   $.fn.carousel = function (option) { | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |     return this.each(function () { | 
					
						
							|  |  |  |       var $this = $(this) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |         , data = $this.data('carousel') | 
					
						
							| 
									
										
										
										
											2012-03-20 06:48:57 +08:00
										 |  |  |         , options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option) | 
					
						
							| 
									
										
										
										
											2012-06-03 12:01:45 +08:00
										 |  |  |         , action = typeof option == 'string' ? option : options.slide | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |       if (!data) $this.data('carousel', (data = new Carousel(this, options))) | 
					
						
							| 
									
										
										
										
											2012-01-22 15:02:29 +08:00
										 |  |  |       if (typeof option == 'number') data.to(option) | 
					
						
							| 
									
										
										
										
											2012-06-03 12:01:45 +08:00
										 |  |  |       else if (action) data[action]() | 
					
						
							| 
									
										
										
										
											2012-03-20 06:48:57 +08:00
										 |  |  |       else if (options.interval) data.cycle() | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |   $.fn.carousel.defaults = { | 
					
						
							| 
									
										
										
										
											2012-01-03 14:57:04 +08:00
										 |  |  |     interval: 5000 | 
					
						
							| 
									
										
										
										
											2012-02-25 13:51:39 +08:00
										 |  |  |   , pause: 'hover' | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 15:28:48 +08:00
										 |  |  |   $.fn.carousel.Constructor = Carousel | 
					
						
							| 
									
										
										
										
											2011-12-01 14:05:09 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |  /* CAROUSEL DATA-API | 
					
						
							|  |  |  |   * ================= */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   $(function () { | 
					
						
							|  |  |  |     $('body').on('click.carousel.data-api', '[data-slide]', function ( e ) { | 
					
						
							| 
									
										
										
										
											2012-01-28 17:35:13 +08:00
										 |  |  |       var $this = $(this), href | 
					
						
							|  |  |  |         , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) //strip for ie7
 | 
					
						
							| 
									
										
										
										
											2012-01-03 14:55:51 +08:00
										 |  |  |         , options = !$target.data('modal') && $.extend({}, $target.data(), $this.data()) | 
					
						
							|  |  |  |       $target.carousel(options) | 
					
						
							| 
									
										
										
										
											2012-01-26 03:49:00 +08:00
										 |  |  |       e.preventDefault() | 
					
						
							| 
									
										
										
										
											2012-01-03 14:30:57 +08:00
										 |  |  |     }) | 
					
						
							|  |  |  |   }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | }(window.jQuery); |