0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-11 03:52:27 +01:00
Bootstrap/js/bootstrap-popover.js

103 lines
2.9 KiB
JavaScript
Raw Permalink Normal View History

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