Skip to content

Commit

Permalink
Fix documentation of noUiSliderInput()'s update_on (#685)
Browse files Browse the repository at this point in the history
To continuously send values, one has to set
`update_on = "change"` rather than
update_on = "update"
  • Loading branch information
fkohrt authored Apr 9, 2024
1 parent 9e59328 commit c97cf1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/input-noUiSlider.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#' @param range list, can be used to define non-linear sliders.
#' @param pips list, used to generate points along the slider.
#' @param format numbers format, see \code{\link{wNumbFormat}}.
#' @param update_on When to send value to server: \code{"end"} (when slider is released) or \code{"update"} (each time value changes).
#' @param update_on When to send value to server: \code{"end"} (when slider is released) or \code{"change"} (each time value changes).
#' @param color color in Hex format for the slider.
#' @param inline If \code{TRUE}, it's possible to position sliders side-by-side.
#' @param width The width of the input, e.g. `400px`, or `100%`.
Expand Down

0 comments on commit c97cf1e

Please sign in to comment.