From eee95bf105ecc05ebe6917028c787229ec9c91cb Mon Sep 17 00:00:00 2001 From: Jacob Gunnarsson Date: Fri, 22 Sep 2017 11:15:29 +0200 Subject: [PATCH] Fix lib/classes/tooltip.js NAME typo --- lib/classes/tooltip.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/classes/tooltip.js b/lib/classes/tooltip.js index e4002b1b0b1..a0f9ee623e2 100644 --- a/lib/classes/tooltip.js +++ b/lib/classes/tooltip.js @@ -4,7 +4,7 @@ import { from as arrayFrom } from '../utils/array'; import { closest, select, isVisible, isDisabled, getCS, addClass, removeClass, hasClass, setAttr, removeAttr, getAttr, eventOn, eventOff } from '../utils/dom'; import BvEvent from './BvEvent'; -const NAME = 'tooltp'; +const NAME = 'tooltip'; const CLASS_PREFIX = 'bs-tooltip'; const BSCLS_PREFIX_REGEX = new RegExp(`\\b${CLASS_PREFIX}\\S+`, 'g');