2017-09-30 17:28:03 -04:00
|
|
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
2017-09-06 00:05:12 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
2015-05-12 17:28:11 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* --------------------------------------------------------------------------
|
2017-10-19 12:40:37 -04:00
|
|
|
* Bootstrap (v4.0.0-beta.2): popover.js
|
2015-05-12 17:28:11 -04:00
|
|
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
|
|
|
* --------------------------------------------------------------------------
|
|
|
|
*/
|
2017-09-06 00:05:12 -04:00
|
|
|
var Popover = function () {
|
2015-05-12 17:28:11 -04:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Constants
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
var NAME = 'popover';
|
2017-10-19 12:40:37 -04:00
|
|
|
var VERSION = '4.0.0-beta.2';
|
2015-05-12 17:28:11 -04:00
|
|
|
var DATA_KEY = 'bs.popover';
|
2017-09-30 17:28:03 -04:00
|
|
|
var EVENT_KEY = "." + DATA_KEY;
|
2015-05-12 17:28:11 -04:00
|
|
|
var JQUERY_NO_CONFLICT = $.fn[NAME];
|
2017-05-16 03:59:44 -04:00
|
|
|
var CLASS_PREFIX = 'bs-popover';
|
2017-09-30 17:28:03 -04:00
|
|
|
var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
|
2015-05-12 17:28:11 -04:00
|
|
|
var Default = $.extend({}, Tooltip.Default, {
|
|
|
|
placement: 'right',
|
|
|
|
trigger: 'click',
|
|
|
|
content: '',
|
2017-06-15 01:03:33 -04:00
|
|
|
template: '<div class="popover" role="tooltip">' + '<div class="arrow"></div>' + '<h3 class="popover-header"></h3>' + '<div class="popover-body"></div></div>'
|
2015-05-12 17:28:11 -04:00
|
|
|
});
|
2015-05-13 17:46:50 -04:00
|
|
|
var DefaultType = $.extend({}, Tooltip.DefaultType, {
|
2015-08-29 17:03:55 -04:00
|
|
|
content: '(string|element|function)'
|
2015-05-13 17:46:50 -04:00
|
|
|
});
|
2015-05-12 17:28:11 -04:00
|
|
|
var ClassName = {
|
|
|
|
FADE: 'fade',
|
2016-12-20 00:48:24 -05:00
|
|
|
SHOW: 'show'
|
2015-05-12 17:28:11 -04:00
|
|
|
};
|
|
|
|
var Selector = {
|
2017-06-15 01:03:33 -04:00
|
|
|
TITLE: '.popover-header',
|
|
|
|
CONTENT: '.popover-body'
|
2015-05-12 17:28:11 -04:00
|
|
|
};
|
|
|
|
var Event = {
|
2017-09-30 17:28:03 -04:00
|
|
|
HIDE: "hide" + EVENT_KEY,
|
|
|
|
HIDDEN: "hidden" + EVENT_KEY,
|
|
|
|
SHOW: "show" + EVENT_KEY,
|
|
|
|
SHOWN: "shown" + EVENT_KEY,
|
|
|
|
INSERTED: "inserted" + EVENT_KEY,
|
|
|
|
CLICK: "click" + EVENT_KEY,
|
|
|
|
FOCUSIN: "focusin" + EVENT_KEY,
|
|
|
|
FOCUSOUT: "focusout" + EVENT_KEY,
|
|
|
|
MOUSEENTER: "mouseenter" + EVENT_KEY,
|
|
|
|
MOUSELEAVE: "mouseleave" + EVENT_KEY
|
2017-09-13 01:24:15 -04:00
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* Class Definition
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-13 01:24:15 -04:00
|
|
|
};
|
2015-08-13 00:12:03 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
var Popover =
|
|
|
|
/*#__PURE__*/
|
|
|
|
function (_Tooltip) {
|
|
|
|
_inheritsLoose(Popover, _Tooltip);
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
function Popover() {
|
|
|
|
return _Tooltip.apply(this, arguments) || this;
|
2015-05-12 17:28:11 -04:00
|
|
|
}
|
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
var _proto = Popover.prototype;
|
2017-05-16 03:59:44 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
// overrides
|
|
|
|
_proto.isWithContent = function isWithContent() {
|
|
|
|
return this.getTitle() || this._getContent();
|
|
|
|
};
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
_proto.addAttachmentClass = function addAttachmentClass(attachment) {
|
|
|
|
$(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
|
|
|
|
};
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
_proto.getTipElement = function getTipElement() {
|
|
|
|
this.tip = this.tip || $(this.config.template)[0];
|
|
|
|
return this.tip;
|
|
|
|
};
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
_proto.setContent = function setContent() {
|
|
|
|
var $tip = $(this.getTipElement()); // we use append for html objects to maintain js events
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
this.setElementContent($tip.find(Selector.TITLE), this.getTitle());
|
|
|
|
this.setElementContent($tip.find(Selector.CONTENT), this._getContent());
|
|
|
|
$tip.removeClass(ClassName.FADE + " " + ClassName.SHOW);
|
|
|
|
}; // private
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2015-08-13 00:12:03 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
_proto._getContent = function _getContent() {
|
|
|
|
return this.element.getAttribute('data-content') || (typeof this.config.content === 'function' ? this.config.content.call(this.element) : this.config.content);
|
|
|
|
};
|
|
|
|
|
|
|
|
_proto._cleanTipClass = function _cleanTipClass() {
|
|
|
|
var $tip = $(this.getTipElement());
|
|
|
|
var tabClass = $tip.attr('class').match(BSCLS_PREFIX_REGEX);
|
|
|
|
|
|
|
|
if (tabClass !== null && tabClass.length > 0) {
|
|
|
|
$tip.removeClass(tabClass.join(''));
|
2017-05-16 03:59:44 -04:00
|
|
|
}
|
2017-09-30 17:28:03 -04:00
|
|
|
}; // static
|
2015-08-13 00:12:03 -04:00
|
|
|
|
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
Popover._jQueryInterface = function _jQueryInterface(config) {
|
|
|
|
return this.each(function () {
|
|
|
|
var data = $(this).data(DATA_KEY);
|
2015-08-13 00:12:03 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
var _config = typeof config === 'object' ? config : null;
|
2015-08-13 00:12:03 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
if (!data && /destroy|hide/.test(config)) {
|
|
|
|
return;
|
|
|
|
}
|
2016-10-09 20:26:51 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
if (!data) {
|
|
|
|
data = new Popover(this, _config);
|
|
|
|
$(this).data(DATA_KEY, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof config === 'string') {
|
|
|
|
if (typeof data[config] === 'undefined') {
|
|
|
|
throw new Error("No method named \"" + config + "\"");
|
2017-09-06 00:05:12 -04:00
|
|
|
}
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
data[config]();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2016-10-09 20:26:51 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
_createClass(Popover, null, [{
|
|
|
|
key: "VERSION",
|
2015-05-12 17:28:11 -04:00
|
|
|
// getters
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-12 17:28:11 -04:00
|
|
|
return VERSION;
|
|
|
|
}
|
|
|
|
}, {
|
2017-09-30 17:28:03 -04:00
|
|
|
key: "Default",
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-12 17:28:11 -04:00
|
|
|
return Default;
|
|
|
|
}
|
|
|
|
}, {
|
2017-09-30 17:28:03 -04:00
|
|
|
key: "NAME",
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-12 17:28:11 -04:00
|
|
|
return NAME;
|
|
|
|
}
|
|
|
|
}, {
|
2017-09-30 17:28:03 -04:00
|
|
|
key: "DATA_KEY",
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-12 17:28:11 -04:00
|
|
|
return DATA_KEY;
|
|
|
|
}
|
|
|
|
}, {
|
2017-09-30 17:28:03 -04:00
|
|
|
key: "Event",
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-12 17:28:11 -04:00
|
|
|
return Event;
|
|
|
|
}
|
2015-05-13 15:48:34 -04:00
|
|
|
}, {
|
2017-09-30 17:28:03 -04:00
|
|
|
key: "EVENT_KEY",
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-13 15:48:34 -04:00
|
|
|
return EVENT_KEY;
|
|
|
|
}
|
2015-05-13 17:46:50 -04:00
|
|
|
}, {
|
2017-09-30 17:28:03 -04:00
|
|
|
key: "DefaultType",
|
2015-08-13 00:12:03 -04:00
|
|
|
get: function get() {
|
2015-05-13 17:46:50 -04:00
|
|
|
return DefaultType;
|
|
|
|
}
|
2015-05-12 17:28:11 -04:00
|
|
|
}]);
|
|
|
|
|
|
|
|
return Popover;
|
2016-10-09 20:26:51 -04:00
|
|
|
}(Tooltip);
|
|
|
|
/**
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
* jQuery
|
|
|
|
* ------------------------------------------------------------------------
|
|
|
|
*/
|
2015-05-12 17:28:11 -04:00
|
|
|
|
2017-09-30 17:28:03 -04:00
|
|
|
|
2015-05-12 17:28:11 -04:00
|
|
|
$.fn[NAME] = Popover._jQueryInterface;
|
|
|
|
$.fn[NAME].Constructor = Popover;
|
2017-09-30 17:28:03 -04:00
|
|
|
|
2015-05-12 17:28:11 -04:00
|
|
|
$.fn[NAME].noConflict = function () {
|
|
|
|
$.fn[NAME] = JQUERY_NO_CONFLICT;
|
|
|
|
return Popover._jQueryInterface;
|
|
|
|
};
|
|
|
|
|
|
|
|
return Popover;
|
2017-10-15 18:51:44 -04:00
|
|
|
}($);
|
2017-04-22 02:58:09 -04:00
|
|
|
//# sourceMappingURL=popover.js.map
|