Skip to content

Slider: Fix type for handle property in events #324

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

Closed
Closed
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
16 changes: 8 additions & 8 deletions entries/slider.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@
<desc>Triggered when the user starts sliding.</desc>
<argument name="event" type="Event"/>
<argument name="ui" type="Object">
<property name="handle" type="jQuery">
<desc>The jQuery object representing the handle being moved.</desc>
<property name="handle" type="Element">
<desc>The HTML element representing the handle being moved.</desc>
</property>
<property name="handleIndex" type="Number">
<desc>The numeric index of the handle being moved.</desc>
Expand All @@ -100,8 +100,8 @@
<desc>Triggered on every mouse move during slide. The value provided in the event as <code>ui.value</code> represents the value that the handle will have as a result of the current movement. Canceling the event will prevent the handle from moving and the handle will continue to have its previous value.</desc>
<argument name="event" type="Event"/>
<argument name="ui" type="Object">
<property name="handle" type="jQuery">
<desc>The jQuery object representing the handle being moved.</desc>
<property name="handle" type="Element">
<desc>The HTML element representing the handle being moved.</desc>
</property>
<property name="handleIndex" type="Number">
<desc>The numeric index of the handle being moved.</desc>
Expand All @@ -118,8 +118,8 @@
<desc>Triggered after the user slides a handle, if the value has changed; or if the value is changed programmatically via the <a href="#method-value"><code>value</code></a> method.</desc>
<argument name="event" type="Event"/>
<argument name="ui" type="Object">
<property name="handle" type="jQuery">
<desc>The jQuery object representing the handle that was changed.</desc>
<property name="handle" type="Element">
<desc>The HTML element representing the handle that was changed.</desc>
</property>
<property name="handleIndex" type="Number">
<desc>The numeric index of the handle that was moved.</desc>
Expand All @@ -133,8 +133,8 @@
<desc>Triggered after the user slides a handle.</desc>
<argument name="event" type="Event"/>
<argument name="ui" type="Object">
<property name="handle" type="jQuery">
<desc>The jQuery object representing the handle that was moved.</desc>
<property name="handle" type="Element">
<desc>The HTML element representing the handle that was moved.</desc>
</property>
<property name="handleIndex" type="Number">
<desc>The numeric index of the handle that was moved.</desc>
Expand Down