Inconsistent destroy and function invocations with droppable and dialog
Hi
If I invoke $("#myDiv").droppable multiple times, when a drop occurs
the drop function will be invoked as many times as I've invoked
droppable.
If I invoke $("#myDiv").dialog multiple times, when the dialog is
closed, the close function will be invoked exactly once.
If I destroy a droppable before recreating it the droppable will
function as expected. But if I destroy a dialog before recreating it,
the dialog will have lost its contents and be unusable.
While working around these inconsistencies is fairly simple, I feel
that a more consistent approach to these methods would be a worthy
goal.
Paul