diff options
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(); |