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 b32bc7a commit 11ebb69Copy full SHA for 11ebb69
ui/tooltip.js
@@ -308,8 +308,9 @@ return $.widget( "ui.tooltip", {
308
// Handle tracking tooltips that are shown with a delay (#8644). As soon
309
// as the tooltip is visible, position the tooltip using the most recent
310
// event.
311
- if ( this.options.show && this.options.show.delay ) {
312
- delayedShow = this.delayedShow = setInterval(function() {
+ // Adds the check to add the timers only when both delay and track options are set (#14682)
+ if ( this.options.track && this.options.show && this.options.show.delay ) {
313
+ delayedShow = this.delayedShow = setInterval( function() {
314
if ( tooltip.is( ":visible" ) ) {
315
position( positionOption.of );
316
clearInterval( delayedShow );
0 commit comments