mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Spinner: decimals and stepping now independent (user request)
This commit is contained in:
parent
068d2483c9
commit
27ba2ff84f
@ -17,13 +17,13 @@ $.widget('ui.spinner', {
|
||||
// terminate initialization if spinner already applied to current element
|
||||
if($.data(this.element[0], 'spinner')) return;
|
||||
|
||||
// check for onInit callback
|
||||
// check for Init callback
|
||||
if (this.options.init) {
|
||||
this.options.init(this.ui(null));
|
||||
}
|
||||
|
||||
// check for decimals in steppinng and set _decimals as internal (needs cleaning up)
|
||||
this._decimals = 0;
|
||||
// check for decimals in steppinng and set _decimals as internal
|
||||
this._decimals = parseInt(this.options.decimals);
|
||||
if (this.options.stepping.toString().indexOf('.') != -1) {
|
||||
var s = this.options.stepping.toString();
|
||||
this._decimals = s.slice(s.indexOf('.')+1, s.length).length;
|
||||
@ -303,6 +303,7 @@ $.widget('ui.spinner', {
|
||||
|
||||
$.extend($.ui.spinner, {
|
||||
defaults: {
|
||||
decimals: 0,
|
||||
stepping: 1,
|
||||
start: 0,
|
||||
incremental: true,
|
||||
|
Loading…
Reference in New Issue
Block a user