You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

ender-bootstrap-popover

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ender-bootstrap-popover - npm Package Compare versions

Comparing version
2.0.4
to
2.2.0
+4
-4
package.json

@@ -16,8 +16,8 @@ {

"dependencies": {
"ender-bootstrap-base": "2.0.4",
"ender-bootstrap-transition": "2.0.4",
"ender-bootstrap-tooltip": "2.0.4"
"ender-bootstrap-base": "2.2.0",
"ender-bootstrap-transition": "2.2.0",
"ender-bootstrap-tooltip": "2.2.0"
},
"main": "popover.js",
"version": "2.0.4"
"version": "2.2.0"
}
/* ===========================================================
* bootstrap-popover.js v2.0.4
* bootstrap-popover.js v2.2.0
* http://twitter.github.com/bootstrap/javascript.html#popovers

@@ -29,3 +29,3 @@ * ===========================================================

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

@@ -47,4 +47,4 @@ }

$tip.find('.popover-title')[this.isHTML(title) ? 'html' : 'text'](title)
$tip.find('.popover-content > *')[this.isHTML(content) ? 'html' : 'text'](content)
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
$tip.find('.popover-content > *')[this.options.html ? 'html' : 'text'](content)

@@ -76,2 +76,6 @@ $tip.removeClass('fade top bottom left right in')

, destroy: function () {
this.hide().$element.off('.' + this.type).removeData(this.type)
}
})

@@ -97,2 +101,3 @@

placement: 'right'
, trigger: 'click'
, content: ''

@@ -99,0 +104,0 @@ , 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>'