| 
									
										
										
										
											2013-05-22 10:30:33 +08:00
										 |  |  | /* ======================================================================== | 
					
						
							| 
									
										
										
										
											2013-05-17 02:06:30 +08:00
										 |  |  |  * Bootstrap: popover.js v3.0.0 | 
					
						
							| 
									
										
										
										
											2012-01-25 03:08:03 +08:00
										 |  |  |  * http://twitter.github.com/bootstrap/javascript.html#popovers
 | 
					
						
							| 
									
										
										
										
											2013-05-22 10:30:33 +08:00
										 |  |  |  * ======================================================================== | 
					
						
							| 
									
										
										
										
											2012-01-15 15:28:48 +08:00
										 |  |  |  * Copyright 2012 Twitter, Inc. | 
					
						
							| 
									
										
										
										
											2011-09-11 13:24:31 +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. | 
					
						
							| 
									
										
										
										
											2013-05-22 10:30:33 +08:00
										 |  |  |  * ======================================================================== */ | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-22 10:30:33 +08:00
										 |  |  | +function ($) { "use strict"; | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   // POPOVER PUBLIC CLASS DEFINITION
 | 
					
						
							|  |  |  |   // ===============================
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-23 09:28:39 +08:00
										 |  |  |   var Popover = function (element, options) { | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |     this.init('popover', element, options) | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.DEFAULTS = $.extend({} , $.fn.tooltip.Constructor.DEFAULTS, { | 
					
						
							|  |  |  |     placement: 'right' | 
					
						
							|  |  |  |   , trigger: 'click' | 
					
						
							|  |  |  |   , content: '' | 
					
						
							|  |  |  |   , template: '<div class="popover"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' | 
					
						
							|  |  |  |   }) | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-11 13:24:31 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   // NOTE: POPOVER EXTENDS tooltip.js
 | 
					
						
							|  |  |  |   // ================================
 | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) | 
					
						
							| 
									
										
										
										
											2011-12-01 14:42:22 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.constructor = Popover | 
					
						
							| 
									
										
										
										
											2011-11-21 13:36:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.getDefaults = function () { | 
					
						
							|  |  |  |     return Popover.DEFAULTS | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-11-21 13:36:26 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.setContent = function () { | 
					
						
							|  |  |  |     var $tip    = this.tip() | 
					
						
							|  |  |  |     var title   = this.getTitle() | 
					
						
							|  |  |  |     var content = this.getContent() | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |     $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) | 
					
						
							|  |  |  |     $tip.find('.popover-content')[this.options.html ? 'html' : 'text'](content) | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |     $tip.removeClass('fade top bottom left right in') | 
					
						
							| 
									
										
										
										
											2013-06-21 07:01:59 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     $tip.find('.popover-title:empty').hide() | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.hasContent = function () { | 
					
						
							|  |  |  |     return this.getTitle() || this.getContent() | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.getContent = function () { | 
					
						
							| 
									
										
										
										
											2013-07-18 14:25:26 +08:00
										 |  |  |     var $e = this.$element | 
					
						
							|  |  |  |     var o  = this.options | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-18 14:25:26 +08:00
										 |  |  |     return $e.attr('data-content') | 
					
						
							|  |  |  |       || (typeof o.content == 'function' ? | 
					
						
							|  |  |  |             o.content.call($e[0]) : | 
					
						
							|  |  |  |             o.content) | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.tip = function () { | 
					
						
							|  |  |  |     if (!this.$tip) this.$tip = $(this.options.template) | 
					
						
							|  |  |  |     return this.$tip | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2012-06-19 10:25:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   Popover.prototype.destroy = function () { | 
					
						
							|  |  |  |     this.hide().$element.off('.' + this.type).removeData(this.type) | 
					
						
							|  |  |  |   } | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-21 10:19:50 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   // POPOVER PLUGIN DEFINITION
 | 
					
						
							|  |  |  |   // =========================
 | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 06:06:01 +08:00
										 |  |  |   var old = $.fn.popover | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-15 07:29:53 +08:00
										 |  |  |   $.fn.popover = function (option) { | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |     return this.each(function () { | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |       var $this   = $(this) | 
					
						
							| 
									
										
										
										
											2013-05-17 11:19:51 +08:00
										 |  |  |       var data    = $this.data('bs.popover') | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |       var options = typeof option == 'object' && option | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 11:19:51 +08:00
										 |  |  |       if (!data) $this.data('bs.popover', (data = new Popover(this, options))) | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  |       if (typeof option == 'string') data[option]() | 
					
						
							|  |  |  |     }) | 
					
						
							| 
									
										
										
										
											2011-08-28 08:22:49 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-21 15:28:48 +08:00
										 |  |  |   $.fn.popover.Constructor = Popover | 
					
						
							| 
									
										
										
										
											2011-12-21 10:02:47 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 06:06:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 08:18:15 +08:00
										 |  |  |   // POPOVER NO CONFLICT
 | 
					
						
							|  |  |  |   // ===================
 | 
					
						
							| 
									
										
										
										
											2012-12-08 06:06:01 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |   $.fn.popover.noConflict = function () { | 
					
						
							|  |  |  |     $.fn.popover = old | 
					
						
							|  |  |  |     return this | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-11-27 22:07:31 +08:00
										 |  |  | }(window.jQuery); |