Skip to content

Commit 278603e

Browse files
Andrew RetmanskiAndrew Retmanski
authored andcommitted
Added a missing var declaration - prevented IE from displaying tooltips (Oops!)
1 parent 369d569 commit 278603e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/jquery.ui.tooltip.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ $.widget("ui.tooltip", {
145145
return;
146146

147147
// Setup timout to show tooltip
148-
self = this;
148+
var self = this;
149149
self.showDelayTimeout = setTimeout(function() {
150150
self.tooltipContent.html(content);
151151
self.tooltip.css({

0 commit comments

Comments
 (0)