Skip to content

Sortable: Remove sender argument from 'remove' event description #189

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 15, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion entries/sortable.xml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,26 @@
<event name="remove">
<desc>This event is triggered when a sortable item has been dragged out from the list and into another.</desc>
<argument name="event" type="Event"/>
<xi:include href="../includes/sortable-argument-ui.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
<argument name="ui" type="Object">
<property name="helper" type="jQuery">
<desc>The jQuery object representing the helper being sorted.</desc>
</property>
<property name="item" type="jQuery">
<desc>The jQuery object representing the current dragged element.</desc>
</property>
<property name="offset" type="Object">
<desc>The current absolute position of the helper represented as <code>{ top, left }</code>.</desc>
</property>
<property name="position" type="Object">
<desc>The current position of the helper represented as <code>{ top, left }</code>.</desc>
</property>
<property name="originalPosition" type="Object">
<desc>The original position of the element represented as <code>{ top, left }</code>.</desc>
</property>
<property name="placeholder" type="jQuery">
<desc>The jQuery object representing the element being used as a placeholder.</desc>
</property>
</argument>
</event>
<event name="over">
<desc>This event is triggered when a sortable item is moved into a sortable list.</desc>
Expand Down