mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
Slider: Move numPages into the widget prototype.
This commit is contained in:
parent
3317ec8990
commit
8dbda00896
15
ui/jquery.ui.slider.js
vendored
15
ui/jquery.ui.slider.js
vendored
@ -15,10 +15,6 @@
|
||||
*/
|
||||
(function( $, undefined ) {
|
||||
|
||||
// number of pages in a slider
|
||||
// (how many times can you page up/down to go through the whole range)
|
||||
var numPages = 5;
|
||||
|
||||
$.widget( "ui.slider", $.ui.mouse, {
|
||||
version: "@VERSION",
|
||||
widgetEventPrefix: "slide",
|
||||
@ -41,6 +37,10 @@ $.widget( "ui.slider", $.ui.mouse, {
|
||||
stop: null
|
||||
},
|
||||
|
||||
// number of pages in a slider
|
||||
// (how many times can you page up/down to go through the whole range)
|
||||
numPages: 5,
|
||||
|
||||
_create: function() {
|
||||
this._keySliding = false;
|
||||
this._mouseSliding = false;
|
||||
@ -637,10 +637,12 @@ $.widget( "ui.slider", $.ui.mouse, {
|
||||
newVal = this._valueMax();
|
||||
break;
|
||||
case $.ui.keyCode.PAGE_UP:
|
||||
newVal = this._trimAlignValue( curVal + ( (this._valueMax() - this._valueMin()) / numPages ) );
|
||||
newVal = this._trimAlignValue(
|
||||
curVal + ( (this._valueMax() - this._valueMin()) / this.numPages ) );
|
||||
break;
|
||||
case $.ui.keyCode.PAGE_DOWN:
|
||||
newVal = this._trimAlignValue( curVal - ( (this._valueMax() - this._valueMin()) / numPages ) );
|
||||
newVal = this._trimAlignValue(
|
||||
curVal - ( (this._valueMax() - this._valueMin()) / this.numPages ) );
|
||||
break;
|
||||
case $.ui.keyCode.UP:
|
||||
case $.ui.keyCode.RIGHT:
|
||||
@ -674,7 +676,6 @@ $.widget( "ui.slider", $.ui.mouse, {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
}(jQuery));
|
||||
|
Loading…
Reference in New Issue
Block a user