Ok, today is the day. I've got a couple of errors, so let's hope we can work it out.
1. What has happened with Effects in Scriptaculous? I used them quite a lot like:
$(ToggleName).appear({ duration: 0.2 }); or
new Effect.Morph(FVName, { style: 'margin-left: -5px;' }),
etc.
Now I've got errors on the client that Effect is unknown and appear is not a function.
I can see that you had in file AspectDroppable.js lines:
new Effect.DropOut(dragger.id, {queue:'parallel'});
new Effect.Pulsate(dropper.id, {queue:'parallel'});
back in v. 3.5. But in v.3.6 these lines are gone.
So the question is: What is the proper way of using Effects in 3.6?
Regards Pavol
EDIT: Ok, I figured it out. The effects.js file is in another project, so when I manually add this resource to the page, it works. I've got minor problems here and there, mostly fixed. The last major problem I noticed today is with Scheduler. It seems, that it can properly set left and top style properties, but completely ignore width and also when resized it gives me wrong height.
I will notify you about next progress, Pavol