I have encountered a issue with the UI dialog. I hooked into the complete event to create a TinyMCE since it does not play nice with the animations. But it does not seem to be working in the latest version of JQuery UI.
I searched around the release notes to see if this has been changed or anything but I did not see it listed anywhere.
Is this a removed/moved functionality or is this an issue in v1.10.0?
Here is the sample code, used in the jsfiddle below:
$("div").dialog({
show:{
effect:"puff",
duration:400,
complete:function()
{
$(".complete").html("Animation Complete.");
}
}
});
Previous Version Functionality(1.9.2):
Latest Version Functionality(1.10.0):
Note: I used the MS CDN for the UI javascript since jsfiddle does not have it yet.