Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
add source to emit event
Browse files Browse the repository at this point in the history
  • Loading branch information
beatfreaker committed Sep 25, 2015
1 parent 55ec5c6 commit 473fd47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ Event Name | Listener Arguments | Event Description
`drag` | `el, source` | `el` was lifted from `source`
`dragend` | `el` | Dragging event for `el` ended with either `cancel`, `remove`, or `drop`
`drop` | `el, target, source, sibling` | `el` was dropped into `target` before a `sibling` element, and originally came from `source`
`cancel` | `el, container` | `el` was being dragged but it got nowhere and went back into `container`, its last stable parent
`remove` | `el, container` | `el` was being dragged but it got nowhere and it was removed from the DOM. Its last stable parent was `container`.
`shadow` | `el, container` | `el`, _the visual aid shadow_, was moved into `container`. May trigger many times as the position of `el` changes, even within the same `container`
`cancel` | `el, container` | `el` was being dragged but it got nowhere and went back into `container`, its last stable parent
`remove` | `el, container, source` | `el` was being dragged but it got nowhere and it was removed from the DOM. Its last stable parent was `container`, and originally came from `source`
`shadow` | `el, container, source` | `el`, _the visual aid shadow_, was moved into `container`. May trigger many times as the position of `el` changes, even within the same `container`, and originally came from `source`
`cloned` | `clone, original, type` | DOM element `original` was cloned as `clone`, of `type` _(`'mirror'` or `'copy'`)_. Fired for mirror images and when `copy: true`
`over` | `el, container, source` | `el` is over `container`, and originally came from `source`
`out` | `el, container, source` | `el` was dragged out of `container` or dropped, and originally came from `source`
Expand Down

0 comments on commit 473fd47

Please sign in to comment.