1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-18 11:21:23 +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) { if (nextActiveElement) {
nextActiveElement.focus({ preventScroll: true }) nextActiveElement.focus({ preventScroll: true })
// eslint-disable-next-line no-console
console.log(nextActiveElement)
Tab.getOrCreateInstance(nextActiveElement).show() Tab.getOrCreateInstance(nextActiveElement).show()
} }
} }
@@ -288,8 +286,6 @@ EventHandler.on(document, EVENT_CLICK_DATA_API, SELECTOR_DATA_TOGGLE, function (
return return
} }
// eslint-disable-next-line no-console
console.log(this)
Tab.getOrCreateInstance(this).show() Tab.getOrCreateInstance(this).show()
}) })