| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  | /* ========================================================== | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  |  * bootstrap-twipsy.js v2.0.0 | 
					
						
							| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  |  * http://twitter.github.com/bootstrap/javascript.html#twipsy
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |  * Inspired by the original jQuery.tipsy by Jason Frame | 
					
						
							| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  |  * ========================================================== | 
					
						
							|  |  |  |  * Copyright 2011 Twitter, Inc. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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. | 
					
						
							|  |  |  |  * ========================================================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 12:48:53 +08:00
										 |  |  | !function( $ ) { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |   "use strict" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |  /* TWIPSY PUBLIC CLASS DEFINITION | 
					
						
							|  |  |  |   * ============================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   var Twipsy = function ( element, options ) { | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |     this.init('twipsy', element, options) | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   Twipsy.prototype = { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-01 14:42:22 +08:00
										 |  |  |     constructor: Twipsy | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , init: function ( type, element, options ) { | 
					
						
							|  |  |  |       var eventIn | 
					
						
							|  |  |  |         , eventOut | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       this.type = type | 
					
						
							|  |  |  |       this.$element = $(element) | 
					
						
							|  |  |  |       this.options = this.getOptions(options) | 
					
						
							|  |  |  |       this.enabled = true | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (this.options.trigger != 'manual') { | 
					
						
							|  |  |  |         eventIn  = this.options.trigger == 'hover' ? 'mouseenter' : 'focus' | 
					
						
							|  |  |  |         eventOut = this.options.trigger == 'hover' ? 'mouseleave' : 'blur' | 
					
						
							|  |  |  |         this.$element.on(eventIn, this.options.selector, $.proxy(this.enter, this)) | 
					
						
							|  |  |  |         this.$element.on(eventOut, this.options.selector, $.proxy(this.leave, this)) | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       this.options.selector ? | 
					
						
							|  |  |  |         (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : | 
					
						
							|  |  |  |         this.fixTitle() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   , getOptions: function ( options ) { | 
					
						
							|  |  |  |       options = $.extend({}, $.fn[this.type].defaults, options, this.$element.data()) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (options.delay && typeof options.delay == 'number') { | 
					
						
							|  |  |  |         options.delay = { | 
					
						
							|  |  |  |           show: options.delay | 
					
						
							|  |  |  |         , hide: options.delay | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       return options | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   , enter: function ( e ) { | 
					
						
							|  |  |  |       var self = $(e.currentTarget)[this.type](this._options).data(this.type) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (!self.options.delay || !self.options.delay.show) { | 
					
						
							|  |  |  |         self.show() | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         self.hoverState = 'in' | 
					
						
							|  |  |  |         setTimeout(function() { | 
					
						
							|  |  |  |           if (self.hoverState == 'in') { | 
					
						
							|  |  |  |             self.show() | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }, self.options.delay.show) | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   , leave: function ( e ) { | 
					
						
							|  |  |  |       var self = $(e.currentTarget)[this.type](this._options).data(this.type) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       if (!self.options.delay || !self.options.delay.hide) { | 
					
						
							|  |  |  |         self.hide() | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         setTimeout(function() { | 
					
						
							|  |  |  |           self.hoverState = 'out' | 
					
						
							|  |  |  |           if (self.hoverState == 'out') { | 
					
						
							|  |  |  |             self.hide() | 
					
						
							|  |  |  |           } | 
					
						
							|  |  |  |         }, self.options.delay.hide) | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   , show: function () { | 
					
						
							|  |  |  |       var $tip | 
					
						
							|  |  |  |         , pos | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |         , actualWidth | 
					
						
							|  |  |  |         , actualHeight | 
					
						
							|  |  |  |         , placement | 
					
						
							|  |  |  |         , tp | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |       if (this.hasContent() && this.enabled) { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |         $tip = this.tip() | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |         this.setContent() | 
					
						
							| 
									
										
										
										
											2011-08-28 09:03:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         if (this.options.animate) { | 
					
						
							|  |  |  |           $tip.addClass('fade') | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |         $tip | 
					
						
							|  |  |  |           .remove() | 
					
						
							|  |  |  |           .css({ top: 0, left: 0, display: 'block' }) | 
					
						
							|  |  |  |           .prependTo(document.body) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         pos = $.extend({}, this.$element.offset(), { | 
					
						
							|  |  |  |           width: this.$element[0].offsetWidth | 
					
						
							|  |  |  |         , height: this.$element[0].offsetHeight | 
					
						
							|  |  |  |         }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         actualWidth = $tip[0].offsetWidth | 
					
						
							|  |  |  |         actualHeight = $tip[0].offsetHeight | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         placement = maybeCall(this.options.placement, this, [ $tip[0], this.$element[0] ]) | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         switch (placement) { | 
					
						
							|  |  |  |           case 'below': | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |             tp = {top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2} | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |             break | 
					
						
							|  |  |  |           case 'above': | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |             tp = {top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2} | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |             break | 
					
						
							|  |  |  |           case 'left': | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |             tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth} | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |             break | 
					
						
							|  |  |  |           case 'right': | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |             tp = {top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width} | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |             break | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $tip | 
					
						
							|  |  |  |           .css(tp) | 
					
						
							|  |  |  |           .addClass(placement) | 
					
						
							| 
									
										
										
										
											2011-08-28 09:03:01 +08:00
										 |  |  |           .addClass('in') | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |   , setContent: function () { | 
					
						
							|  |  |  |       var $tip = this.tip() | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  |       $tip.find('.twipsy-inner').html(this.getTitle()) | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |       $tip[0].className = 'twipsy' | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , hide: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       var that = this | 
					
						
							|  |  |  |         , $tip = this.tip() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 09:03:01 +08:00
										 |  |  |       $tip.removeClass('in') | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |       function removeElement () { | 
					
						
							|  |  |  |         $tip.remove() | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 09:03:01 +08:00
										 |  |  |       $.support.transition && this.$tip.hasClass('fade') ? | 
					
						
							| 
									
										
										
										
											2011-12-21 11:37:41 +08:00
										 |  |  |         $tip.on($.support.transition.end, removeElement) : | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |         removeElement() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , fixTitle: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       var $e = this.$element | 
					
						
							|  |  |  |       if ($e.attr('title') || typeof($e.attr('data-original-title')) != 'string') { | 
					
						
							|  |  |  |         $e.attr('data-original-title', $e.attr('title') || '').removeAttr('title') | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |   , hasContent: function () { | 
					
						
							|  |  |  |       return this.getTitle() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , getTitle: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       var title | 
					
						
							|  |  |  |         , $e = this.$element | 
					
						
							|  |  |  |         , o = this.options | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |       title = $e.attr('data-original-title') | 
					
						
							|  |  |  |         || (typeof o.title == 'function' ? o.title.call($e[0]) :  o.title) | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |       title = title.toString().replace(/(^\s*|\s*$)/, "") | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |       return title | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , tip: function () { | 
					
						
							| 
									
										
										
										
											2011-12-21 11:37:41 +08:00
										 |  |  |       return this.$tip = this.$tip || $(this.options.template) | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , validate: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       if (!this.$element[0].parentNode) { | 
					
						
							|  |  |  |         this.hide() | 
					
						
							|  |  |  |         this.$element = null | 
					
						
							|  |  |  |         this.options = null | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , enable: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       this.enabled = true | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , disable: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       this.enabled = false | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , toggleEnabled: function () { | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |       this.enabled = !this.enabled | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |   , toggle: function () { | 
					
						
							|  |  |  |       this[this.tip().hasClass('in') ? 'hide' : 'show']() | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  /* TWIPSY PRIVATE METHODS | 
					
						
							|  |  |  |   * ====================== */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  |    function maybeCall ( thing, ctx, args ) { | 
					
						
							|  |  |  |      return typeof thing == 'function' ? thing.apply(ctx, args) : thing | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |    } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |  /* TWIPSY PLUGIN DEFINITION | 
					
						
							|  |  |  |   * ======================== */ | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   $.fn.twipsy = function ( option ) { | 
					
						
							|  |  |  |     return this.each(function () { | 
					
						
							|  |  |  |       var $this = $(this) | 
					
						
							|  |  |  |         , data = $this.data('twipsy') | 
					
						
							|  |  |  |         , options = typeof option == 'object' && option | 
					
						
							|  |  |  |       if (!data) $this.data('twipsy', (data = new Twipsy(this, options))) | 
					
						
							|  |  |  |       if (typeof option == 'string') data[option]() | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |   $.fn.twipsy.Twipsy = Twipsy | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |   $.fn.twipsy.defaults = { | 
					
						
							| 
									
										
										
										
											2011-08-28 09:03:01 +08:00
										 |  |  |     animate: true | 
					
						
							| 
									
										
										
										
											2011-11-21 12:58:04 +08:00
										 |  |  |   , delay: 0 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , selector: false | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |   , placement: 'above' | 
					
						
							|  |  |  |   , trigger: 'hover' | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |   , title: '' | 
					
						
							| 
									
										
										
										
											2011-12-21 11:37:41 +08:00
										 |  |  |   , template: '<div class="twipsy"><div class="twipsy-arrow"></div><div class="twipsy-inner"></div></div>' | 
					
						
							| 
									
										
										
										
											2011-08-28 04:03:06 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | }( window.jQuery ) |