diff options
author | Scott González <scott.gonzalez@gmail.com> | 2011-05-28 16:20:01 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2011-05-28 16:20:01 -0400 |
commit | 2fbd310a159c4f5d54a38b406bb559dc1fb35449 (patch) | |
tree | 07cad56b748ad8fd3a8855ef09461f7f0dde831c /ui/jquery.ui.tooltip.js | |
parent | 302ad626bfa4fc148c296ed63264e5b90b5b91b5 (diff) | |
download | jquery-ui-2fbd310a159c4f5d54a38b406bb559dc1fb35449.tar.gz jquery-ui-2fbd310a159c4f5d54a38b406bb559dc1fb35449.zip |
Tooltip: Added a destroy method to remove generated tooltip elements.
Diffstat (limited to 'ui/jquery.ui.tooltip.js')
-rw-r--r-- | ui/jquery.ui.tooltip.js | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/ui/jquery.ui.tooltip.js b/ui/jquery.ui.tooltip.js index 4560418ab..e6f1c7bb6 100644 --- a/ui/jquery.ui.tooltip.js +++ b/ui/jquery.ui.tooltip.js @@ -35,6 +35,9 @@ $.widget( "ui.tooltip", { mouseover: "open", focusin: "open" }); + + // IDs of generated tooltips, needed for destroy + this.tooltips = {}; }, _setOption: function( key, value ) { @@ -114,7 +117,8 @@ $.widget( "ui.tooltip", { }, close: function( event ) { - var target = $( event ? event.currentTarget : this.element ); + var that = this, + target = $( event ? event.currentTarget : this.element ); target.attr( "title", target.data( "tooltip-title" ) ); if ( this.options.disabled ) { @@ -127,6 +131,7 @@ $.widget( "ui.tooltip", { tooltip.stop( true ); this._hide( tooltip, this.options.hide, function() { $( this ).remove(); + delete that[ this.id ]; }); // TODO: why isn't click unbound here? @@ -136,9 +141,10 @@ $.widget( "ui.tooltip", { }, _tooltip: function() { - var tooltip = $( "<div>" ) + var id = "ui-tooltip-" + increments++, + tooltip = $( "<div>" ) .attr({ - id: "ui-tooltip-" + increments++, + id: id, role: "tooltip" }) .addClass( "ui-tooltip ui-widget ui-corner-all ui-widget-content" + @@ -147,12 +153,20 @@ $.widget( "ui.tooltip", { .addClass( "ui-tooltip-content" ) .appendTo( tooltip ); tooltip.appendTo( document.body ); + this.tooltips[ id ] = true; return tooltip; }, _find: function( target ) { var id = target.attr( "aria-describedby" ); return id ? $( "#" + id ) : $(); + }, + + destroy: function() { + $.each( this.tooltips, function( id ) { + $( "#" + id ).remove(); + }); + this._super( "destroy" ); } }); |