Skip to content

Commit 82efe0c

Browse files
authored
Fix: Show static tooltips at end of event loop always (fixes #552)
1 parent 13ce58d commit 82efe0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/views/TooltipView.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default class TooltipView extends Backbone.View {
8181
const id = $addedEl.data('tooltip-id');
8282
const tooltip = this.getTooltip(id);
8383
if (!tooltip?.get('_isEnabled') || !tooltip?.get('_isStatic')) return;
84-
this.show(tooltip, $addedEl);
84+
_.defer(() => this.show(tooltip, $addedEl));
8585
}
8686

8787
/**

0 commit comments

Comments
 (0)