Tooltip: Removed click handler.

This commit is contained in:
Scott González 2011-05-28 20:15:26 -04:00
parent 6bc220587e
commit 74df32f91e

View File

@ -106,8 +106,7 @@ $.widget( "ui.tooltip", {
this._bind( target, {
mouseleave: "close",
blur: "close",
click: "close"
blur: "close"
});
},
@ -129,7 +128,6 @@ $.widget( "ui.tooltip", {
delete that.tooltips[ this.id ];
});
// TODO: why isn't click unbound here?
target.unbind( "mouseleave.tooltip blur.tooltip" );
this._trigger( "close", event );