We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13ce58d commit 82efe0cCopy full SHA for 82efe0c
js/views/TooltipView.js
@@ -81,7 +81,7 @@ export default class TooltipView extends Backbone.View {
81
const id = $addedEl.data('tooltip-id');
82
const tooltip = this.getTooltip(id);
83
if (!tooltip?.get('_isEnabled') || !tooltip?.get('_isStatic')) return;
84
- this.show(tooltip, $addedEl);
+ _.defer(() => this.show(tooltip, $addedEl));
85
}
86
87
/**
0 commit comments