Merge "Fix tipsy bug, part 2"

This commit is contained in:
jenkins-bot 2014-04-10 01:27:12 +00:00 committed by Gerrit Code Review
commit ea5b135d80

View file

@ -345,11 +345,13 @@
buttons.$reuse.removeClass( 'open' );
} );
this.readyToShowFeedbackTooltip = false;
this.setTimer( 'feedbackTooltip.show', function () {
this.readyToShowFeedbackTooltip = true;
this.maybeDisplayTooltip();
}, this.feedbackSettings.tooltipDelay * 1000 );
if ( this.shouldShowFeedbackSurvey() ) {
this.readyToShowFeedbackTooltip = false;
this.setTimer( 'feedbackTooltip.show', function () {
this.readyToShowFeedbackTooltip = true;
this.maybeDisplayTooltip();
}, this.feedbackSettings.tooltipDelay * 1000 );
}
};
/**