0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-12-01 13:24:25 +01:00
Bootstrap/js/bootstrap-popover.js

114 lines
3.1 KiB
JavaScript
Raw Normal View History

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