in partnership with mediatemple

Show
Ignore:
Timestamp:
05/05/08 10:36:32 (1 week ago)
Author:
JanK
Message:
  • Class events should now be used without their on prefix, i.e. addEvent('onChainComplete', fn) becomes addEvent('chainComplete'). If you want to add events in the options you need to prefix them with 'on' now ('foo' -> 'onFoo').

Note: This is not a breaking change.

- other minor optimizations and doc fixes

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/Docs/Plugins/Drag.Move.md

    r1538 r1546  
    3535### Events: 
    3636 
    37 * onDrop - Executed when the element drops. Passes as argument the element and the element dropped on. If dropped on nothing, the second argument is null. 
    38 * onLeave - Executed when the element leaves one of the droppables. 
    39 * onEnter - Executed when the element enters one of the droppables. 
     37* drop - Executed when the element drops. Passes as argument the element and the element dropped on. If dropped on nothing, the second argument is null. 
     38* leave - Executed when the element leaves one of the droppables. 
     39* enter - Executed when the element enters one of the droppables. 
    4040 
    4141### Example: