From ad5e56892f01e31597596720f19a85089695ad58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Tue, 9 Oct 2018 09:29:08 -0400 Subject: [PATCH] Slider: Fix type for `handle` property in events Fixes gh-279 --- entries/slider.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/entries/slider.xml b/entries/slider.xml index 3a2038d7..9a41ff73 100644 --- a/entries/slider.xml +++ b/entries/slider.xml @@ -85,8 +85,8 @@ Triggered when the user starts sliding. - - The jQuery object representing the handle being moved. + + The HTML element representing the handle being moved. The numeric index of the handle being moved. @@ -100,8 +100,8 @@ Triggered on every mouse move during slide. The value provided in the event as ui.value 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. - - The jQuery object representing the handle being moved. + + The HTML element representing the handle being moved. The numeric index of the handle being moved. @@ -118,8 +118,8 @@ Triggered after the user slides a handle, if the value has changed; or if the value is changed programmatically via the value method. - - The jQuery object representing the handle that was changed. + + The HTML element representing the handle that was changed. The numeric index of the handle that was moved. @@ -133,8 +133,8 @@ Triggered after the user slides a handle. - - The jQuery object representing the handle that was moved. + + The HTML element representing the handle that was moved. The numeric index of the handle that was moved.