twbs--bootstrap/js/dist/tooltip.js

671 lines
19 KiB
JavaScript
Raw Normal View History

2017-12-22 19:21:54 -05:00
function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
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; }
/**
* --------------------------------------------------------------------------
2018-01-18 11:21:22 -05:00
* Bootstrap (v4.0.0): tooltip.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-10-25 15:31:55 -04:00
var Tooltip = function ($) {
/**
* ------------------------------------------------------------------------
* Constants
* ------------------------------------------------------------------------
*/
var NAME = 'tooltip';
2018-01-18 11:21:22 -05:00
var VERSION = '4.0.0';
var DATA_KEY = 'bs.tooltip';
2017-09-30 17:28:03 -04:00
var EVENT_KEY = "." + DATA_KEY;
var JQUERY_NO_CONFLICT = $.fn[NAME];
var TRANSITION_DURATION = 150;
2017-05-16 03:59:44 -04:00
var CLASS_PREFIX = 'bs-tooltip';
2017-09-30 17:28:03 -04:00
var BSCLS_PREFIX_REGEX = new RegExp("(^|\\s)" + CLASS_PREFIX + "\\S+", 'g');
2015-05-13 17:46:50 -04:00
var DefaultType = {
animation: 'boolean',
template: 'string',
2015-08-29 17:03:55 -04:00
title: '(string|element|function)',
2015-05-13 17:46:50 -04:00
trigger: 'string',
delay: '(number|object)',
html: 'boolean',
selector: '(string|boolean)',
placement: '(string|function)',
2017-05-16 03:59:44 -04:00
offset: '(number|string)',
container: '(string|element|boolean)',
2017-12-22 19:21:54 -05:00
fallbackPlacement: '(string|array)',
boundary: '(string|element)'
};
2015-05-12 17:28:11 -04:00
var AttachmentMap = {
2017-05-26 23:20:10 -04:00
AUTO: 'auto',
2017-05-16 03:59:44 -04:00
TOP: 'top',
RIGHT: 'right',
BOTTOM: 'bottom',
LEFT: 'left'
};
var Default = {
animation: true,
2017-06-01 00:25:47 -04:00
template: '<div class="tooltip" role="tooltip">' + '<div class="arrow"></div>' + '<div class="tooltip-inner"></div></div>',
2017-05-16 03:59:44 -04:00
trigger: 'hover focus',
title: '',
delay: 0,
html: false,
selector: false,
placement: 'top',
offset: 0,
container: false,
2017-12-22 19:21:54 -05:00
fallbackPlacement: 'flip',
boundary: 'scrollParent'
};
var HoverState = {
2016-12-20 00:48:24 -05:00
SHOW: 'show',
OUT: 'out'
};
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
};
var ClassName = {
FADE: 'fade',
2016-12-20 00:48:24 -05:00
SHOW: 'show'
};
var Selector = {
TOOLTIP: '.tooltip',
2017-06-01 00:25:47 -04:00
TOOLTIP_INNER: '.tooltip-inner',
ARROW: '.arrow'
};
2015-05-12 17:28:11 -04:00
var Trigger = {
HOVER: 'hover',
FOCUS: 'focus',
CLICK: 'click',
MANUAL: 'manual'
2017-09-13 01:24:15 -04:00
/**
* ------------------------------------------------------------------------
* Class Definition
* ------------------------------------------------------------------------
*/
2017-09-13 01:24:15 -04:00
};
2017-09-30 17:28:03 -04:00
var Tooltip =
/*#__PURE__*/
function () {
function Tooltip(element, config) {
2017-10-29 19:19:14 -04:00
/**
* Check for Popper dependency
* Popper - https://popper.js.org
*/
if (typeof Popper === 'undefined') {
2018-01-12 01:42:40 -05:00
throw new TypeError('Bootstrap tooltips require Popper.js (https://popper.js.org)');
2017-10-29 19:19:14 -04:00
} // private
this._isEnabled = true;
this._timeout = 0;
this._hoverState = '';
this._activeTrigger = {};
2018-01-12 01:42:40 -05:00
this._popper = null; // Protected
this.element = element;
this.config = this._getConfig(config);
this.tip = null;
this._setListeners();
2018-01-12 01:42:40 -05:00
} // Getters
2015-08-13 00:12:03 -04:00
2017-09-30 17:28:03 -04:00
var _proto = Tooltip.prototype;
2018-01-12 01:42:40 -05:00
// Public
2017-09-30 17:28:03 -04:00
_proto.enable = function enable() {
this._isEnabled = true;
};
2017-09-30 17:28:03 -04:00
_proto.disable = function disable() {
this._isEnabled = false;
};
2017-09-30 17:28:03 -04:00
_proto.toggleEnabled = function toggleEnabled() {
this._isEnabled = !this._isEnabled;
};
_proto.toggle = function toggle(event) {
if (!this._isEnabled) {
return;
2017-09-06 00:05:12 -04:00
}
2015-08-18 23:28:28 -04:00
2017-09-30 17:28:03 -04:00
if (event) {
var dataKey = this.constructor.DATA_KEY;
var context = $(event.currentTarget).data(dataKey);
2015-08-18 23:28:28 -04:00
2017-09-30 17:28:03 -04:00
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
2015-05-12 17:28:11 -04:00
2017-09-30 17:28:03 -04:00
context._activeTrigger.click = !context._activeTrigger.click;
2015-05-12 17:28:11 -04:00
2017-09-30 17:28:03 -04:00
if (context._isWithActiveTrigger()) {
context._enter(null, context);
2016-10-09 20:26:51 -04:00
} else {
2017-09-30 17:28:03 -04:00
context._leave(null, context);
}
} else {
if ($(this.getTipElement()).hasClass(ClassName.SHOW)) {
this._leave(null, this);
2015-05-13 15:48:34 -04:00
2017-09-30 17:28:03 -04:00
return;
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
this._enter(null, this);
}
};
2017-09-30 17:28:03 -04:00
_proto.dispose = function dispose() {
clearTimeout(this._timeout);
$.removeData(this.element, this.constructor.DATA_KEY);
$(this.element).off(this.constructor.EVENT_KEY);
$(this.element).closest('.modal').off('hide.bs.modal');
2017-09-30 17:28:03 -04:00
if (this.tip) {
$(this.tip).remove();
}
2017-09-30 17:28:03 -04:00
this._isEnabled = null;
this._timeout = null;
this._hoverState = null;
this._activeTrigger = null;
2017-09-30 17:28:03 -04:00
if (this._popper !== null) {
this._popper.destroy();
2016-11-01 00:14:23 -04:00
}
2017-09-30 17:28:03 -04:00
this._popper = null;
this.element = null;
this.config = null;
this.tip = null;
};
2017-09-30 17:28:03 -04:00
_proto.show = function show() {
var _this = this;
2017-09-30 17:28:03 -04:00
if ($(this.element).css('display') === 'none') {
throw new Error('Please use show on visible elements');
}
2017-09-30 17:28:03 -04:00
var showEvent = $.Event(this.constructor.Event.SHOW);
2017-09-30 17:28:03 -04:00
if (this.isWithContent() && this._isEnabled) {
$(this.element).trigger(showEvent);
var isInTheDom = $.contains(this.element.ownerDocument.documentElement, this.element);
2017-09-30 17:28:03 -04:00
if (showEvent.isDefaultPrevented() || !isInTheDom) {
return;
}
2017-09-30 17:28:03 -04:00
var tip = this.getTipElement();
var tipId = Util.getUID(this.constructor.NAME);
tip.setAttribute('id', tipId);
this.element.setAttribute('aria-describedby', tipId);
this.setContent();
2017-09-30 17:28:03 -04:00
if (this.config.animation) {
$(tip).addClass(ClassName.FADE);
}
2017-09-30 17:28:03 -04:00
var placement = typeof this.config.placement === 'function' ? this.config.placement.call(this, tip, this.element) : this.config.placement;
2016-11-26 22:17:23 -05:00
2017-09-30 17:28:03 -04:00
var attachment = this._getAttachment(placement);
2017-04-01 22:18:29 -04:00
2017-09-30 17:28:03 -04:00
this.addAttachmentClass(attachment);
var container = this.config.container === false ? document.body : $(this.config.container);
$(tip).data(this.constructor.DATA_KEY, this);
2015-08-18 23:28:28 -04:00
2017-09-30 17:28:03 -04:00
if (!$.contains(this.element.ownerDocument.documentElement, this.tip)) {
$(tip).appendTo(container);
}
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
$(this.element).trigger(this.constructor.Event.INSERTED);
this._popper = new Popper(this.element, tip, {
placement: attachment,
modifiers: {
offset: {
offset: this.config.offset
2017-05-16 03:59:44 -04:00
},
2017-09-30 17:28:03 -04:00
flip: {
behavior: this.config.fallbackPlacement
2017-06-01 00:25:47 -04:00
},
2017-09-30 17:28:03 -04:00
arrow: {
element: Selector.ARROW
2017-12-22 19:21:54 -05:00
},
preventOverflow: {
boundariesElement: this.config.boundary
2017-09-30 17:28:03 -04:00
}
},
onCreate: function onCreate(data) {
if (data.originalPlacement !== data.placement) {
2017-05-16 03:59:44 -04:00
_this._handlePopperPlacementChange(data);
}
2017-09-30 17:28:03 -04:00
},
onUpdate: function onUpdate(data) {
_this._handlePopperPlacementChange(data);
2017-05-16 03:59:44 -04:00
}
2017-09-30 17:28:03 -04:00
});
2018-01-12 01:42:40 -05:00
$(tip).addClass(ClassName.SHOW); // If this is a touch-enabled device we add extra
2017-09-30 17:28:03 -04:00
// empty mouseover listeners to the body's immediate children;
// only needed because of broken event delegation on iOS
// https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if ('ontouchstart' in document.documentElement) {
2018-02-24 15:44:44 -05:00
$(document.body).children().on('mouseover', null, $.noop);
2017-04-22 02:58:09 -04:00
}
var complete = function complete() {
2017-09-30 17:28:03 -04:00
if (_this.config.animation) {
_this._fixTransition();
2017-05-16 03:59:44 -04:00
}
2017-09-30 17:28:03 -04:00
var prevHoverState = _this._hoverState;
_this._hoverState = null;
$(_this.element).trigger(_this.constructor.Event.SHOWN);
2017-09-30 17:28:03 -04:00
if (prevHoverState === HoverState.OUT) {
_this._leave(null, _this);
}
};
2017-09-30 17:28:03 -04:00
if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
$(this.tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(Tooltip._TRANSITION_DURATION);
} else {
complete();
}
2017-09-30 17:28:03 -04:00
}
};
2017-09-30 17:28:03 -04:00
_proto.hide = function hide(callback) {
var _this2 = this;
2017-09-30 17:28:03 -04:00
var tip = this.getTipElement();
var hideEvent = $.Event(this.constructor.Event.HIDE);
var complete = function complete() {
if (_this2._hoverState !== HoverState.SHOW && tip.parentNode) {
tip.parentNode.removeChild(tip);
2016-10-09 20:26:51 -04:00
}
2017-09-30 17:28:03 -04:00
_this2._cleanTipClass();
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_this2.element.removeAttribute('aria-describedby');
2017-09-30 17:28:03 -04:00
$(_this2.element).trigger(_this2.constructor.Event.HIDDEN);
if (_this2._popper !== null) {
_this2._popper.destroy();
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
if (callback) {
callback();
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
$(this.element).trigger(hideEvent);
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (hideEvent.isDefaultPrevented()) {
return;
2017-05-16 03:59:44 -04:00
}
2017-09-30 17:28:03 -04:00
2018-01-12 01:42:40 -05:00
$(tip).removeClass(ClassName.SHOW); // If this is a touch-enabled device we remove the extra
2017-09-30 17:28:03 -04:00
// empty mouseover listeners we added for iOS support
if ('ontouchstart' in document.documentElement) {
2018-02-24 15:44:44 -05:00
$(document.body).children().off('mouseover', null, $.noop);
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
this._activeTrigger[Trigger.CLICK] = false;
this._activeTrigger[Trigger.FOCUS] = false;
this._activeTrigger[Trigger.HOVER] = false;
if (Util.supportsTransitionEnd() && $(this.tip).hasClass(ClassName.FADE)) {
$(tip).one(Util.TRANSITION_END, complete).emulateTransitionEnd(TRANSITION_DURATION);
} else {
complete();
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
this._hoverState = '';
};
_proto.update = function update() {
if (this._popper !== null) {
this._popper.scheduleUpdate();
2017-09-06 00:05:12 -04:00
}
2018-01-12 01:42:40 -05:00
}; // Protected
2017-09-30 17:28:03 -04:00
_proto.isWithContent = function isWithContent() {
return Boolean(this.getTitle());
};
_proto.addAttachmentClass = function addAttachmentClass(attachment) {
$(this.getTipElement()).addClass(CLASS_PREFIX + "-" + attachment);
};
_proto.getTipElement = function getTipElement() {
this.tip = this.tip || $(this.config.template)[0];
return this.tip;
};
_proto.setContent = function setContent() {
var $tip = $(this.getTipElement());
this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle());
$tip.removeClass(ClassName.FADE + " " + ClassName.SHOW);
};
_proto.setElementContent = function setElementContent($element, content) {
var html = this.config.html;
if (typeof content === 'object' && (content.nodeType || content.jquery)) {
2018-01-12 01:42:40 -05:00
// Content is a DOM node or a jQuery
2017-09-30 17:28:03 -04:00
if (html) {
if (!$(content).parent().is($element)) {
$element.empty().append(content);
2015-08-29 17:03:55 -04:00
}
} else {
2017-09-30 17:28:03 -04:00
$element.text($(content).text());
2015-08-29 17:03:55 -04:00
}
2017-09-30 17:28:03 -04:00
} else {
$element[html ? 'html' : 'text'](content);
2015-08-29 17:03:55 -04:00
}
2017-09-30 17:28:03 -04:00
};
2017-09-30 17:28:03 -04:00
_proto.getTitle = function getTitle() {
var title = this.element.getAttribute('data-original-title');
2017-09-30 17:28:03 -04:00
if (!title) {
title = typeof this.config.title === 'function' ? this.config.title.call(this.element) : this.config.title;
}
2017-09-30 17:28:03 -04:00
return title;
2018-01-12 01:42:40 -05:00
}; // Private
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto._getAttachment = function _getAttachment(placement) {
return AttachmentMap[placement.toUpperCase()];
};
_proto._setListeners = function _setListeners() {
var _this3 = this;
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
var triggers = this.config.trigger.split(' ');
triggers.forEach(function (trigger) {
if (trigger === 'click') {
$(_this3.element).on(_this3.constructor.Event.CLICK, _this3.config.selector, function (event) {
return _this3.toggle(event);
});
} else if (trigger !== Trigger.MANUAL) {
var eventIn = trigger === Trigger.HOVER ? _this3.constructor.Event.MOUSEENTER : _this3.constructor.Event.FOCUSIN;
var eventOut = trigger === Trigger.HOVER ? _this3.constructor.Event.MOUSELEAVE : _this3.constructor.Event.FOCUSOUT;
$(_this3.element).on(eventIn, _this3.config.selector, function (event) {
return _this3._enter(event);
}).on(eventOut, _this3.config.selector, function (event) {
return _this3._leave(event);
2017-09-06 00:05:12 -04:00
});
}
2017-09-30 17:28:03 -04:00
$(_this3.element).closest('.modal').on('hide.bs.modal', function () {
return _this3.hide();
});
});
if (this.config.selector) {
2017-12-22 19:21:54 -05:00
this.config = _extends({}, this.config, {
2017-09-30 17:28:03 -04:00
trigger: 'manual',
selector: ''
});
} else {
this._fixTitle();
2016-10-09 20:26:51 -04:00
}
2017-09-30 17:28:03 -04:00
};
2017-09-30 17:28:03 -04:00
_proto._fixTitle = function _fixTitle() {
var titleType = typeof this.element.getAttribute('data-original-title');
2017-09-30 17:28:03 -04:00
if (this.element.getAttribute('title') || titleType !== 'string') {
this.element.setAttribute('data-original-title', this.element.getAttribute('title') || '');
this.element.setAttribute('title', '');
}
};
2017-09-30 17:28:03 -04:00
_proto._enter = function _enter(event, context) {
var dataKey = this.constructor.DATA_KEY;
context = context || $(event.currentTarget).data(dataKey);
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
}
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (event) {
context._activeTrigger[event.type === 'focusin' ? Trigger.FOCUS : Trigger.HOVER] = true;
}
2017-09-30 17:28:03 -04:00
if ($(context.getTipElement()).hasClass(ClassName.SHOW) || context._hoverState === HoverState.SHOW) {
2017-09-06 00:05:12 -04:00
context._hoverState = HoverState.SHOW;
2017-09-30 17:28:03 -04:00
return;
}
clearTimeout(context._timeout);
context._hoverState = HoverState.SHOW;
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (!context.config.delay || !context.config.delay.show) {
context.show();
return;
}
context._timeout = setTimeout(function () {
if (context._hoverState === HoverState.SHOW) {
context.show();
}
2017-09-30 17:28:03 -04:00
}, context.config.delay.show);
};
2017-09-30 17:28:03 -04:00
_proto._leave = function _leave(event, context) {
var dataKey = this.constructor.DATA_KEY;
context = context || $(event.currentTarget).data(dataKey);
if (!context) {
context = new this.constructor(event.currentTarget, this._getDelegateConfig());
$(event.currentTarget).data(dataKey, context);
2016-10-09 20:26:51 -04:00
}
2017-09-30 17:28:03 -04:00
if (event) {
context._activeTrigger[event.type === 'focusout' ? Trigger.FOCUS : Trigger.HOVER] = false;
}
2017-09-30 17:28:03 -04:00
if (context._isWithActiveTrigger()) {
return;
}
2017-09-30 17:28:03 -04:00
clearTimeout(context._timeout);
context._hoverState = HoverState.OUT;
2017-09-30 17:28:03 -04:00
if (!context.config.delay || !context.config.delay.hide) {
context.hide();
return;
}
context._timeout = setTimeout(function () {
if (context._hoverState === HoverState.OUT) {
context.hide();
}
2017-09-30 17:28:03 -04:00
}, context.config.delay.hide);
};
2017-09-30 17:28:03 -04:00
_proto._isWithActiveTrigger = function _isWithActiveTrigger() {
for (var trigger in this._activeTrigger) {
if (this._activeTrigger[trigger]) {
return true;
}
}
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
return false;
};
2015-05-13 17:46:50 -04:00
2017-09-30 17:28:03 -04:00
_proto._getConfig = function _getConfig(config) {
2017-12-22 19:21:54 -05:00
config = _extends({}, this.constructor.Default, $(this.element).data(), config);
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (typeof config.delay === 'number') {
config.delay = {
show: config.delay,
hide: config.delay
};
2017-04-01 22:18:29 -04:00
}
2017-09-30 17:28:03 -04:00
if (typeof config.title === 'number') {
config.title = config.title.toString();
2017-04-01 22:18:29 -04:00
}
2017-09-30 17:28:03 -04:00
if (typeof config.content === 'number') {
config.content = config.content.toString();
}
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
Util.typeCheckConfig(NAME, config, this.constructor.DefaultType);
return config;
};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
_proto._getDelegateConfig = function _getDelegateConfig() {
var config = {};
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (this.config) {
for (var key in this.config) {
if (this.constructor.Default[key] !== this.config[key]) {
config[key] = this.config[key];
}
}
2017-05-16 03:59:44 -04:00
}
2017-09-30 17:28:03 -04:00
return config;
};
_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
};
_proto._handlePopperPlacementChange = function _handlePopperPlacementChange(data) {
this._cleanTipClass();
this.addAttachmentClass(this._getAttachment(data.placement));
};
_proto._fixTransition = function _fixTransition() {
var tip = this.getTipElement();
var initConfigAnimation = this.config.animation;
if (tip.getAttribute('x-placement') !== null) {
return;
2017-09-06 00:05:12 -04:00
}
2017-09-30 17:28:03 -04:00
$(tip).removeClass(ClassName.FADE);
this.config.animation = false;
this.hide();
this.show();
this.config.animation = initConfigAnimation;
2018-01-12 01:42:40 -05:00
}; // Static
2017-09-30 17:28:03 -04:00
Tooltip._jQueryInterface = function _jQueryInterface(config) {
return this.each(function () {
var data = $(this).data(DATA_KEY);
var _config = typeof config === 'object' && config;
if (!data && /dispose|hide/.test(config)) {
2016-10-09 20:26:51 -04:00
return;
}
2017-09-06 00:05:12 -04:00
2017-09-30 17:28:03 -04:00
if (!data) {
data = new Tooltip(this, _config);
$(this).data(DATA_KEY, data);
}
2016-10-09 20:26:51 -04:00
2017-09-30 17:28:03 -04:00
if (typeof config === 'string') {
if (typeof data[config] === 'undefined') {
2018-01-12 01:42:40 -05:00
throw new TypeError("No method named \"" + config + "\"");
2017-09-06 00:05:12 -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(Tooltip, null, [{
key: "VERSION",
2015-08-13 00:12:03 -04:00
get: function get() {
return VERSION;
}
}, {
2017-09-30 17:28:03 -04:00
key: "Default",
2015-08-13 00:12:03 -04:00
get: function get() {
return Default;
}
2015-05-12 17:28:11 -04:00
}, {
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;
}
}]);
return Tooltip;
2016-10-09 20:26:51 -04:00
}();
/**
* ------------------------------------------------------------------------
* jQuery
* ------------------------------------------------------------------------
*/
2017-09-30 17:28:03 -04:00
$.fn[NAME] = Tooltip._jQueryInterface;
$.fn[NAME].Constructor = Tooltip;
2017-09-30 17:28:03 -04:00
$.fn[NAME].noConflict = function () {
$.fn[NAME] = JQUERY_NO_CONFLICT;
return Tooltip._jQueryInterface;
};
return Tooltip;
2017-10-15 18:51:44 -04:00
}($, Popper);
2017-04-22 02:58:09 -04:00
//# sourceMappingURL=tooltip.js.map