aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.spinner.js
diff options
context:
space:
mode:
authorjzaefferer <joern.zaefferer@gmail.com>2010-10-24 15:52:26 +0200
committerjzaefferer <joern.zaefferer@gmail.com>2010-10-24 15:52:26 +0200
commit02d8f914b68f73537dcaca272087b544b366bb2b (patch)
tree6b91fe0fb5a9c75664cbb0e52daba1b12f33e778 /ui/jquery.ui.spinner.js
parenteebf8c31fff4653cfcbb273f7da5fa7177217dca (diff)
downloadjquery-ui-02d8f914b68f73537dcaca272087b544b366bb2b.tar.gz
jquery-ui-02d8f914b68f73537dcaca272087b544b366bb2b.zip
Spinner: Some code and test cleanup
Diffstat (limited to 'ui/jquery.ui.spinner.js')
-rw-r--r--ui/jquery.ui.spinner.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/jquery.ui.spinner.js b/ui/jquery.ui.spinner.js
index f4227b8f6..02bb41ac0 100644
--- a/ui/jquery.ui.spinner.js
+++ b/ui/jquery.ui.spinner.js
@@ -27,7 +27,6 @@ $.widget('ui.spinner', {
min: null,
mouseWheel: true,
numberformat: "n",
- padding: 0,
page: 5,
spinnerClass: null,
step: null,
@@ -35,7 +34,7 @@ $.widget('ui.spinner', {
},
_create: function() {
- this.value(this._parse(this.element.val() || this.options.value));
+ this.value(this.element.val() || this.options.value);
this._draw();
this._mousewheel();
this._aria();