aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.spinner.js
Commit message (Collapse)AuthorAgeFilesLines
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Spinner: Introduce icons option to make button icons customizable, mostly ↵Jörn Zaefferer2012-07-121-2/+6
| | | | for consistency
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* Widget: Rename _bind() to _on(). Partial fix for #7795 - Widget: _on and _off.Scott González2012-06-131-2/+2
|
* Spinner: Use _destroy() instead of destroy().Scott González2012-05-241-2/+1
|
* Spinner: Handle async focus events in IE. Fixes incorrect detection of changes.Scott González2012-05-101-3/+39
|
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Spinner: Allow strings for min, max, and step options, converting ↵Scott González2012-01-071-0/+13
| | | | immediately to numbers based on numberFormat and culture.
* Widget: Remove method argument from _super and _superApply. Was a left-over ↵Jörn Zaefferer2011-11-181-3/+3
| | | | from first implementation, not necessary anymore.
* Spinner: Handle changes to numberFormat and currency options.Scott González2011-11-161-0/+7
|
* Widget: Added window and document properties. Fixes #7801 - Widget: Add ↵Scott González2011-10-201-2/+2
| | | | document and window properties.
* Spinner: Re-enable autocomplete if the page is unloaded so the browser will ↵Scott González2011-10-171-0/+9
| | | | remember the current value when navigating through history.
* Spinner: Fixed mousewheel stop timer.Scott González2011-10-131-1/+1
|
* Spinner: Adjust height check for IE 6 rendering.Scott González2011-10-131-1/+2
|
* Spinner: Added culture option.Scott González2011-09-281-2/+4
|
* Spinner: Fix the IE6-height-fix to not break the spinner when initialized ↵Jörn Zaefferer2011-09-241-1/+1
| | | | while not visible
* Spinner: Work around a bug in IE 6 with the height of the buttons.Scott González2011-09-141-1/+7
|
* Spinner: Added missing dependency to header comment.Scott González2011-09-141-0/+1
|
* Spinner: Fix step mismatches whenever stepping, paging or using the value ↵Scott González2011-09-141-19/+36
| | | | | | setter. Thanks Nate Ferrero
* Spinner: Replace var that with this and _delayJörn Zaefferer2011-09-131-3/+2
|
* Spinner: Added ability to specify custom incremental function.Scott González2011-09-091-3/+9
|
* Spinner: Default min and max options to null.Scott González2011-09-091-4/+4
|
* Spinner: Removed value option. Don't change empty values to zero on init. ↵Scott González2011-08-131-39/+36
| | | | Don't enforce min/max on blur.
* Spinner: Fixed precision when stepping.Scott González2011-08-121-2/+11
| | | | Thanks hughlomas
* Spinner: Moved all event handlers into an object.Scott González2011-08-121-84/+74
|
* Spinner: Fixed integration with globalize.Scott González2011-08-101-1/+1
|
* Replace $.global with Globalize, update Spinner to use it. Related demos ↵Jörn Zaefferer2011-08-101-3/+3
| | | | currently broken due to previous changes.
* Spinner: Return formatted value when using value method.Scott González2011-08-091-15/+15
|
* Spinner: Use a polynomial instead of hard-coded blocks for incremental stepping.Scott González2011-08-071-10/+7
|
* Spinner: More tests. Don't trigger spin when programmatically stepping or ↵Scott González2011-08-071-1/+1
| | | | paging.
* Spinner: Fixed double firing of change event when setting the value option ↵Scott González2011-08-071-9/+2
| | | | directly.
* Spinner: Don't need to call _format() and _aria() in _setOptions() since ↵Scott González2011-08-071-2/+0
| | | | it's wrapped as a modifier.
* Spinner: Trigger change event when the value is changed programmatically.Scott González2011-08-071-26/+61
|
* Spinner: Re-render value if numberFormat option changes.Scott González2011-08-071-1/+1
|
* Spinner: Use _getCreateOptions() for value.Scott González2011-08-071-4/+4
|
* Merge branch 'spinner-getCreateOptions'Scott González2011-08-061-21/+14
|\ | | | | | | | | Conflicts: ui/jquery.ui.spinner.js
| * Spinner: Use _getCreateOptions() instead of custom _markupOptions().Scott González2011-08-061-21/+14
| |
* | Spinner: Added comment with formula that approximates current incrementing ↵Scott González2011-08-061-0/+1
| | | | | | | | logic.
* | Spinner: Define defaults for callbacks.Scott González2011-08-061-1/+6
| |
* | Spinner: Only trigger change when the field has blurred and the value has ↵Scott González2011-08-061-27/+14
| | | | | | | | changed.
* | Spinner: Don't set focus on stop, focus should already be correct. Always ↵Scott González2011-08-061-9/+2
| | | | | | | | remove ui-state-active on blur, since we no longer blur when interacting with buttons.
* | Spinner: Keep the focus on the text field even when using the buttons.Scott González2011-08-061-3/+7
| |
* | Spinner: Don't clear invalid values on blur (but clear the value option).Scott González2011-08-061-1/+7
| |
* | Spinner: Don't stop propgation of mousedown. Added TODOs.Scott González2011-08-061-3/+7
|/
* Spinner: Invoke _markupOptions() before _draw().Scott González2011-08-061-1/+5
|
* Spinner: Don't stop propagation for keydown events.Scott González2011-08-061-8/+7
|
* Spinner: Cleanup, use ._bind() and ._hoverable().Scott González2011-08-061-99/+80
|
* Merge branch 'master' into core-1.6.1Scott González2011-07-251-7/+18
|\ | | | | | | | | | | | | | | | | Conflicts: demos/menubar/default.html tests/unit/autocomplete/autocomplete.html tests/visual/effects/effects.all.html ui/jquery.ui.menu.js ui/jquery.ui.popup.js
| * Spinner: modified _spin and _setOption to call new method _trimValue to ↵beatryder2011-06-131-7/+18
| | | | | | | | check for min/max values. Fixed #7264 - Spinner returns values beyond min and max, off by one