Memory leaks in resizable

Memory leaks in resizable


Hi,
I came across memory leaks in resizable while testing in sieve. On the
destroy resizable always creates 7 memory leaks. I tracked it down and
this seems to be the line:
this._handles = $('.ui-resizable-handle', this.element)
    .disableSelection();
would you consider to add the following lines to destroy function that
removes selection events from the handles and solves the memory
leaks:
$.each(this._handles,
function() {
    $(this).enableSelection();
});
p.s. i also submitted a patch for ie memory leaks in ui.core (http://
groups.google.com/group/jquery-ui/browse_thread/thread/
2410ef1e377b10a7#), I think i posted in the wrong group