aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Widget: Wrap the remove event trigerring in a try/catch. Fixes #7510 - ↵Scott González2011-08-091-1/+4
| | | | jQuery.data throws a script error in certain circumstances.
* Datepicker: Added ability to stop datepicker from beforeShow. Fixes #7602 - ↵Karl Kirch2011-08-091-1/+7
| | | | Ability to stop datepicker from appearing with beforeShow event handler.
* Mouse: Work around a bug in IE 8 where disabled inputs don't have a ↵Scott González2011-08-091-1/+3
| | | | nodeName. Fixes #7620 - Mouse: Error in IE 8 with disabled inputs.
* Revert "Datepicker: Added onSelect.apply() call to _setDate method if ↵Scott González2011-08-091-8/+0
| | | | | | onSelect is defined. Fixed #6264 - Datepicker: onSelect does not fire when setDate is called" This reverts commit effdd5d19c534f8445ebafe4212278c4366b0041.
* Merge remote branch 'kou/autocomplete-destroy-search-timeout'Jörn Zaefferer2011-08-091-0/+1
|\
| * Autocomplete: ensure clear searching timeout on destroy.Kouhei Sutou2011-08-071-0/+1
| |
* | 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
|
* Button: Adding quotes to the attribute selector for labels - Fixes #7534 - ↵Corey Frang2011-08-031-1/+1
| | | | Button label selector omits quotes / fails for ids with ":"
* Merge pull request #413 from kborchers/bug_4333_3Scott González2011-08-021-4/+8
|\ | | | | Mouse: Changed mouseHandled check to a local var rather than using originalEvent. Fixed #4333 - Nested draggables problem in IE
| * Mouse: Changed mouseHandled check to a local var rather than using ↵kborchers2011-08-021-4/+8
| | | | | | | | originalEvent. Fixed #4333 - Nested draggables problem in IE
* | Effects: Adding a check to retain focused elements after wrapping and ↵Corey Frang2011-08-021-3/+20
|/ | | | unwrapping in animations - Fixes #7595 - Wrapper-creating jquery-ui animations will discard any focus state during the animation - Thanks @rubyruy
* Datepicker: Removed click handling for month and year dropdowns. Fixes #6198 ↵Scott González2011-08-011-15/+0
| | | | | | - Datepicker Month and Year dropdowns in IE have to click twice. Thanks jdufresne
* Revert "Mouse: Changed mouseHandled check to a local var rather than using ↵Scott González2011-08-011-8/+4
| | | | | | originalEvent. Fixed #4333 - Nested draggables problem in IE" This reverts commit 9c50bdfde0260fc8412eec1c5020ed6b61558ebd.
* Autocomplete: Correcting readOnly from readonly - @scottgonzalezCorey Frang2011-07-291-1/+1
|
* Widget delegation: Small if-simplify refactoringJörn Zaefferer2011-07-281-3/+3
|
* WhitespaceJörn Zaefferer2011-07-281-1/+1
|
* Widget delegation: Put back the simple click event handler where it was.Jörn Zaefferer2011-07-281-5/+7
|
* Widget delegation: Further simplify menu code, blur handler also doesn't do ↵Jörn Zaefferer2011-07-281-3/+1
| | | | anything
* Widget delegation: Further simplify menu codeJörn Zaefferer2011-07-281-3/+1
|
* Widget delegation: Update menu to use _bind with delegation. Clean up test.Jörn Zaefferer2011-07-281-45/+32
|
* Merge branch 'master' into widget-delegationJörn Zaefferer2011-07-2827-927/+1018
|\
| * Menu: Added focusing first menu item when menu receives focus and ↵kborchers2011-07-261-0/+12
| | | | | | | | collapseAll when menu loses focus (blur).
| * Merge remote branch 'kborchers/menu_home_end'Jörn Zaefferer2011-07-251-19/+42
| |\
| | * Menu: Added Home moves to first item and End moves to last item in currently ↵kborchers2011-07-251-19/+42
| | | | | | | | | | | | active menu or submenu. Also fixed PageUp and PageDown so that they don't wrap back around to other end of menu. Also fixed scrolling to use activeMenu rather than element to all. Also added unit tests for keyboard nav
| * | Merge branch 'master' into core-1.6.1Scott González2011-07-2525-1037/+1308
| |\| | | | | | | | | | | | | | | | | | | | | | | | | 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
| | * Merge pull request #368 from kborchers/bug_3532_2Scott González2011-07-201-11/+13
| | |\ | | | | | | | | Accordion: Stop current hide animation, jump to last animation and calculate percentages for padding in addition to height. Fixes #3532 - Accordion: Activating a panel during animation fails
| | | * Accordion: Stop current hide animation, jump to last animation and calculate ↵kborchers2011-07-201-11/+13
| | | | | | | | | | | | | | | | percentages for padding in addition to height. Fixes #3532 - Accordion: Activating a panel during animation fails
| | * | Menu: Passed the original event that causes a blur through collapseAll to ↵kborchers2011-07-191-5/+7
| | | | | | | | | | | | | | | | blur, then trigger a blur on the menu. Fixes failing unit test provided by @rwaldron which has been included in this commit
| | * | Datepicker i18n: Corrected Dutch abbreviation of month name March. Fixed ↵Richard D. Worth2011-07-191-1/+1
| | | | | | | | | | | | | | | | #7566 - Dutch march name translation
| | * | Datepicker: show inline datepicker setting explicit display:block instead of ↵Richard D. Worth2011-07-191-1/+3
| | | | | | | | | | | | | | | | using .show() in case it is disconnected. Fixed #7552 - A Datepicker created on a detached div has zero height
| | * | Menu: Changed closeAll to collapseAll and updated in Menubar, also updated a ↵kborchers2011-07-142-7/+7
| | | | | | | | | | | | | | | | reference to left in Menubar to collapse.
| | * | Menu: Fix formatting and whitespace (was supposed to update previous commit)Jörn Zaefferer2011-07-141-4/+7
| | | |