You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In IE11 "document.contains" is not supported. Should be replaced with "document.body.contains". Could you please correct this?
Code snippet
In bv-tooltip.js the following code is causing the console error:
this.$nextTick(() => {
const target = this.getTarget()
if (target && document.contains(target)) {
// Copy the parent's scoped style attribute
this.scopeId = getScopId(this.$parent)
// Set up all trigger handlers and listeners
this.listen()
} else {
/* istanbul ignore next */
warn(`${this.templateType} unable to find target element in document`)
}
})