2013-05-21 22:30:33 -04:00
|
|
|
/* ========================================================================
|
2013-12-24 15:16:17 -05:00
|
|
|
* Bootstrap: popover.js v3.0.3
|
2013-10-29 13:10:47 -04:00
|
|
|
* http://getbootstrap.com/javascript/#popovers
|
2013-05-21 22:30:33 -04:00
|
|
|
* ========================================================================
|
2014-01-06 19:05:24 -05:00
|
|
|
* Copyright 2011-2014 Twitter, Inc.
|
2013-12-18 18:28:08 -05:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
2013-05-21 22:30:33 -04:00
|
|
|
* ======================================================================== */
|
2011-08-27 20:22:49 -04:00
|
|
|
|
|
|
|
|
2013-09-18 12:50:02 -04:00
|
|
|
+function ($) { 'use strict';
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// POPOVER PUBLIC CLASS DEFINITION
|
|
|
|
// ===============================
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2012-07-22 21:28:39 -04:00
|
|
|
var Popover = function (element, options) {
|
2011-12-20 21:02:47 -05:00
|
|
|
this.init('popover', element, options)
|
2011-08-27 20:22:49 -04:00
|
|
|
}
|
|
|
|
|
2013-07-26 23:44:35 -04:00
|
|
|
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
|
|
|
|
2013-12-15 14:04:32 -05: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>'
|
2013-05-16 20:18:15 -04:00
|
|
|
})
|
2012-04-14 19:29:53 -04:00
|
|
|
|
2011-09-11 01:24:31 -04:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// NOTE: POPOVER EXTENDS tooltip.js
|
|
|
|
// ================================
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
|
2011-12-01 01:42:22 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype.constructor = Popover
|
2011-11-21 00:36:26 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype.getDefaults = function () {
|
|
|
|
return Popover.DEFAULTS
|
|
|
|
}
|
2011-11-21 00:36:26 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype.setContent = function () {
|
|
|
|
var $tip = this.tip()
|
|
|
|
var title = this.getTitle()
|
|
|
|
var content = this.getContent()
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
2013-12-28 23:59:45 -05:00
|
|
|
$tip.find('.popover-content')[ // we use append for html objects to maintain js events
|
|
|
|
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
|
|
|
|
](content)
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
$tip.removeClass('fade top bottom left right in')
|
2013-06-20 19:01:59 -04:00
|
|
|
|
2013-08-06 14:18:12 -04:00
|
|
|
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
|
|
|
|
// this manually by checking the contents.
|
2013-08-10 17:09:05 -04:00
|
|
|
if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
|
2013-05-16 20:18:15 -04:00
|
|
|
}
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype.hasContent = function () {
|
|
|
|
return this.getTitle() || this.getContent()
|
|
|
|
}
|
2011-12-20 21:02:47 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype.getContent = function () {
|
2013-07-18 02:25:26 -04:00
|
|
|
var $e = this.$element
|
|
|
|
var o = this.options
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2013-07-18 02:25:26 -04:00
|
|
|
return $e.attr('data-content')
|
|
|
|
|| (typeof o.content == 'function' ?
|
|
|
|
o.content.call($e[0]) :
|
|
|
|
o.content)
|
2013-05-16 20:18:15 -04:00
|
|
|
}
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2013-08-06 17:02:57 -04:00
|
|
|
Popover.prototype.arrow = function () {
|
2013-08-04 20:22:49 -04:00
|
|
|
return this.$arrow = this.$arrow || this.tip().find('.arrow')
|
|
|
|
}
|
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
Popover.prototype.tip = function () {
|
|
|
|
if (!this.$tip) this.$tip = $(this.options.template)
|
|
|
|
return this.$tip
|
|
|
|
}
|
2012-06-18 22:25:54 -04:00
|
|
|
|
2011-11-20 21:19:50 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// POPOVER PLUGIN DEFINITION
|
|
|
|
// =========================
|
2011-08-27 20:22:49 -04:00
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
var old = $.fn.popover
|
|
|
|
|
2012-04-14 19:29:53 -04:00
|
|
|
$.fn.popover = function (option) {
|
2011-12-20 21:02:47 -05:00
|
|
|
return this.each(function () {
|
2013-05-16 20:18:15 -04:00
|
|
|
var $this = $(this)
|
2013-05-16 23:19:51 -04:00
|
|
|
var data = $this.data('bs.popover')
|
2013-05-16 20:18:15 -04:00
|
|
|
var options = typeof option == 'object' && option
|
|
|
|
|
2013-12-26 21:27:43 -05:00
|
|
|
if (!data && option == 'destroy') return
|
2013-05-16 23:19:51 -04:00
|
|
|
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
2011-12-20 21:02:47 -05:00
|
|
|
if (typeof option == 'string') data[option]()
|
|
|
|
})
|
2011-08-27 20:22:49 -04:00
|
|
|
}
|
|
|
|
|
2011-12-21 02:28:48 -05:00
|
|
|
$.fn.popover.Constructor = Popover
|
2011-12-20 21:02:47 -05:00
|
|
|
|
2012-12-07 17:06:01 -05:00
|
|
|
|
2013-05-16 20:18:15 -04:00
|
|
|
// POPOVER NO CONFLICT
|
|
|
|
// ===================
|
2012-12-07 17:06:01 -05:00
|
|
|
|
|
|
|
$.fn.popover.noConflict = function () {
|
|
|
|
$.fn.popover = old
|
|
|
|
return this
|
|
|
|
}
|
|
|
|
|
2013-08-22 14:50:15 -04:00
|
|
|
}(jQuery);
|