8000 Update bv-tooltip-template.js · bootstrap-vue/bootstrap-vue@09085b3 · GitHub
[go: up one dir, main page]

Skip to content

Commit 09085b3

Browse files
committed
Update bv-tooltip-template.js
1 parent 918f582 commit 09085b3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/tooltip/helpers/bv-tooltip-template.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,20 +77,20 @@ export const BVTooltipTemplate = /*#__PURE__*/ Vue.extend({
7777
templateListeners() {
7878
// Used for hover/focus trigger listeners
7979
return {
80-
/* istanbul ignore next */
8180
mouseenter: event => {
81+
/* istanbul ignore next: difficult to test in JSDOM */
8282
this.$emit(EVENT_NAME_MOUSEENTER, event)
8383
},
84-
/* istanbul ignore next */
8584
mouseleave: event => {
85+
/* istanbul ignore next: difficult to test in JSDOM */
8686
this.$emit(EVENT_NAME_MOUSELEAVE, event)
8787
},
88-
/* istanbul ignore next */
8988
focusin: event => {
89+
/* istanbul ignore next: difficult to test in JSDOM */
9090
this.$emit(EVENT_NAME_FOCUSIN, event)
9191
},
92-
9392
focusout: event => {
93+
/* istanbul ignore next: difficult to test in JSDOM */
9494
this.$emit(EVENT_NAME_FOCUSOUT, event)
9595
}
9696
}

0 commit comments

Comments
 (0)
0