diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:05:36 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:22 -0400 |
commit | 1d572f051a52c8e4c589a1554e519e81d6c3d7a8 (patch) | |
tree | aa6ce2fdac05e4cfd88e20a863329beef683fa03 /ui/widgets | |
parent | d86ac025ee021728bccecb04b1b16f965e7dcc9f (diff) | |
download | jquery-ui-1d572f051a52c8e4c589a1554e519e81d6c3d7a8.tar.gz jquery-ui-1d572f051a52c8e4c589a1554e519e81d6c3d7a8.zip |
Slider: Style updates
Ref #14246
Ref gh-1588
Diffstat (limited to 'ui/widgets')
-rw-r--r-- | ui/widgets/slider.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/widgets/slider.js b/ui/widgets/slider.js index 1ab319ebb..792fa4da2 100644 --- a/ui/widgets/slider.js +++ b/ui/widgets/slider.js @@ -57,14 +57,14 @@ return $.widget( "ui.slider", $.ui.mouse, { value: 0, values: null, - // callbacks + // Callbacks change: null, slide: null, start: null, stop: null }, - // number of pages in a slider + // Number of pages in a slider // (how many times can you page up/down to go through the whole range) numPages: 5, @@ -516,7 +516,7 @@ return $.widget( "ui.slider", $.ui.mouse, { } }, - // returns the step-aligned value that val is closest to, between (inclusive) min and max + // Returns the step-aligned value that val is closest to, between (inclusive) min and max _trimAlignValue: function( val ) { if ( val <= this._valueMin() ) { return this._valueMin(); |