We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c5cd20 commit d573232Copy full SHA for d573232
ui/widgets/tooltip.js
@@ -318,7 +318,8 @@ $.widget( "ui.tooltip", {
318
// Handle tracking tooltips that are shown with a delay (#8644). As soon
319
// as the tooltip is visible, position the tooltip using the most recent
320
// event.
321
- if ( this.options.show && this.options.show.delay ) {
+ // Adds the check to add the timers only when both delay and track options are set (#14682)
322
+ if ( this.options.track && this.options.show && this.options.show.delay ) {
323
delayedShow = this.delayedShow = setInterval( function() {
324
if ( tooltip.is( ":visible" ) ) {
325
position( positionOption.of );
0 commit comments