1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-17 19:06:40 +02:00
This commit is contained in:
louismaxime.piton
2023-03-03 14:01:55 +01:00
parent b8ef1f7c71
commit 97b56188ad

View File

@@ -164,8 +164,6 @@ class Tab extends BaseComponent {
if (nextActiveElement) {
nextActiveElement.focus({ preventScroll: true })
// eslint-disable-next-line no-console
console.log(nextActiveElement)
Tab.getOrCreateInstance(nextActiveElement).show()
}
}
@@ -288,8 +286,6 @@ EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (
return
}
// eslint-disable-next-line no-console
console.log(this)
Tab.getOrCreateInstance(this).show()
})