1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00
twbs--bootstrap/js/popover.js

110 lines
3.2 KiB
JavaScript
Raw Normal View History

2013-05-21 22:30:33 -04:00
/* ========================================================================
2013-05-16 14:06:30 -04:00
* Bootstrap: popover.js v3.0.0
2012-01-24 14:08:03 -05:00
* http://twitter.github.com/bootstrap/javascript.html#popovers
2013-05-21 22:30:33 -04:00
* ========================================================================
2012-01-15 02:28:48 -05:00
* Copyright 2012 Twitter, Inc.
2011-09-11 01:24:31 -04: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-21 22:30:33 -04:00
* ======================================================================== */
2011-08-27 20:22:49 -04:00
2013-05-21 22:30:33 -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) {
this.init('popover', element, options)
2011-08-27 20:22:49 -04:00
}
2013-05-16 20:18:15 -04: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 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
2013-05-16 20:18:15 -04:00
Popover.prototype.getDefaults = function () {
return Popover.DEFAULTS
}
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)
$tip.find('.popover-content')[this.options.html ? 'html' : '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')
}
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()
}
2013-05-16 20:18:15 -04:00
Popover.prototype.getContent = function () {
var content = typeof this.options.content == 'function' ?
2013-05-16 20:44:50 -04:00
this.options.content.call(this.$element[0]) :
2013-05-16 20:18:15 -04:00
this.options.content
2011-08-27 20:22:49 -04:00
2013-05-16 20:18:15 -04:00
return content || this.$element.attr('data-content')
}
2011-08-27 20:22:49 -04:00
2013-05-16 20:18:15 -04:00
Popover.prototype.tip = function () {
if (!this.$tip) this.$tip = $(this.options.template)
return this.$tip
}
2013-05-16 20:18:15 -04:00
Popover.prototype.destroy = function () {
this.hide().$element.off('.' + this.type).removeData(this.type)
}
2011-08-27 20:22:49 -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
var old = $.fn.popover
$.fn.popover = function (option) {
return this.each(function () {
2013-05-16 20:18:15 -04:00
var $this = $(this)
var data = $this.data('bs.popover')
2013-05-16 20:18:15 -04: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-27 20:22:49 -04:00
}
$.fn.popover.Constructor = Popover
2013-05-16 20:18:15 -04:00
// POPOVER NO CONFLICT
// ===================
$.fn.popover.noConflict = function () {
$.fn.popover = old
return this
}
}(window.jQuery);