v1
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
//
|
||||
// Popover
|
||||
//
|
||||
|
||||
'use strict';
|
||||
|
||||
var Popover = (function() {
|
||||
|
||||
// Variables
|
||||
|
||||
var $popover = $('[data-toggle="popover"]');
|
||||
|
||||
|
||||
// Methods
|
||||
|
||||
function init($this) {
|
||||
var popoverClass = '';
|
||||
|
||||
if ($this.data('color')) {
|
||||
popoverClass = ' popover-' + $this.data('color');
|
||||
}
|
||||
|
||||
var options = {
|
||||
trigger: 'focus',
|
||||
template: '<div class="popover' + popoverClass + '" role="tooltip"><div class="arrow"></div><h3 class="popover-header"></h3><div class="popover-body"></div></div>'
|
||||
};
|
||||
|
||||
$this.popover(options);
|
||||
}
|
||||
|
||||
|
||||
// Events
|
||||
|
||||
if ($popover.length) {
|
||||
$popover.each(function() {
|
||||
init($(this));
|
||||
});
|
||||
}
|
||||
|
||||
})();
|
||||
Reference in New Issue
Block a user