Modules (188)

bootstrap-popover

Description

Dependencies

This module has no dependencies

Variables

old

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]()
    })
  }

  $.fn.popover.Constructor = Popover

  $.fn.popover.defaults = $.extend({} , $.fn.tooltip.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>'
  })

Functions

Popover

POPOVER PUBLIC CLASS DEFINITION


  var Popover = function (element, options) {
    this.init('popover', element, options)
  }