Updated droppables test page
I updated the droppables test page along with a couple fixes (rev2343,2345):
<a href="http://dev.jquery.com/view/trunk/plugins/ui/tests/drop.html">http://dev.jquery.com/view/trunk/plugins/ui/tests/drop.html</a>
I'm continuing as in drop.html and testing each option and each callback in the same order as they are documented. So far I've just done the two accept options (fn and string), but each test uses other options as well (activate, deactive, over, out, drop) to make it a little more interactive/demo-like. So even though only two tests are there, 7 options are being tested. I still plan on putting the others in there.
Please test it out if you get a chance (I've only tested in FF), and let me know if you find any more issues.
Also, I when I did the callback rename from onHover, onOut, onDrop to remove the 'on', I found that hover didn't seem consistent with the mouse event it's bound to (mouseover). So the three renamed are over, out, drop. I recommend have hover as well and bind it to mousemove (when draggable is hovering droppable). Does that sound alright?
- Richard