0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00

Remove not necessary condition in tooltip.js

This commit is contained in:
vsn4ik 2017-09-11 22:44:42 +03:00
parent 7add90db9c
commit d5890cb82f

View File

@ -622,18 +622,18 @@ const Tooltip = (() => {
config
)
if (config.delay && typeof config.delay === 'number') {
if (typeof config.delay === 'number') {
config.delay = {
show : config.delay,
hide : config.delay
}
}
if (config.title && typeof config.title === 'number') {
if (typeof config.title === 'number') {
config.title = config.title.toString()
}
if (config.content && typeof config.content === 'number') {
if (typeof config.content === 'number') {
config.content = config.content.toString()
}