twbs--bootstrap/js/popover.js

114 lines
3.2 KiB
JavaScript
Raw Normal View History

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