diff options
author | Richard Worth <rdworth@gmail.com> | 2008-09-20 02:43:18 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-09-20 02:43:18 +0000 |
commit | 0bae0870d920842f10322763c66bc59541b9158c (patch) | |
tree | 4133b7ebeb79260c75efc5f8a7f1133bbce85c9f /ui/ui.spinner.js | |
parent | 1285c6e76302a65f8eaf6380b33c010a1900519c (diff) | |
download | jquery-ui-0bae0870d920842f10322763c66bc59541b9158c.tar.gz jquery-ui-0bae0870d920842f10322763c66bc59541b9158c.zip |
whitespace
Diffstat (limited to 'ui/ui.spinner.js')
-rw-r--r-- | ui/ui.spinner.js | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ui/ui.spinner.js b/ui/ui.spinner.js index f639719d6..1413a4286 100644 --- a/ui/ui.spinner.js +++ b/ui/ui.spinner.js @@ -118,7 +118,6 @@ $.widget('ui.spinner', { }) .end(); - // DataList: Set contraints for object length and step size. // Manipulate height of spinner. this._items = this.element.children().length; @@ -157,7 +156,6 @@ $.widget('ui.spinner', { } }, - _constrain: function() { if(this.options.min != undefined && this._getValue() < this.options.min) this._setValue(this.options.min); if(this.options.max != undefined && this._getValue() > this.options.max) this._setValue(this.options.max); @@ -246,7 +244,6 @@ $.widget('ui.spinner', { } }, - plugins: {}, ui: function(e) { return { |