aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Autocomplete: ESCAPE should not change content of a MultiLineYermo Lamers2014-07-241-1/+3
| | | | | Fixes #9790 Closes gh-1190
* Resizable: Fix size/position changes in resize eventScott González2014-07-241-23/+37
| | | | | Fixes #10351 Closes gh-1292
* Position: Support positioning within document with jQuery 1.6.xScott González2014-07-241-2/+5
| | | | | Fixes #10071 Closes gh-1294
* Widget: Improve performance of cleanData methodFrederik Elvhage2014-07-241-2/+9
| | | | | Fixes #9546 Closes gh-1291
* Datepicker: Abstract mouseover logic to avoid explicit event triggerTJ VanToll2014-07-231-14/+20
| | | | | | | | | The reliance on `.mouseover()` caused an issue in some circumstances (see #5816). The removal of `.mouseover()` broke keyboard navigation (see #10319). Fixes #10319 Closes gh-1290
* Dialog: Track the instance as soon as the dialog is openedScott González2014-07-231-3/+12
| | | | Fixes #10152
* Dialog: Fix stacking of modal dialog overlaysScott González2014-07-171-0/+8
| | | | | Fixes #10138 Closes gh-1286
* Resizable: Remove accidental exposure of internal data in eventsJyoti Deka2014-07-161-8/+6
| | | | | Fixes #10148 Closes gh-1279
* Tabs: Work around bad Safari/VoiceOver heuristicsMonika Piotrowicz2014-07-161-19/+23
| | | | | | | | Move disabled tab click handlers from the container to the tablist to prevent panel contents from being announced as clickable. Fixes #10098 Closes gh-1261
* Draggable: Manage ui-draggable-handle correctly in nested instancesTJ VanToll2014-07-151-6/+4
|
* Draggable: Only apply ui-draggable-handle within the draggable instanceTJ VanToll2014-07-151-1/+3
| | | | | Fixes #10212 Closes gh-1284
* Effect: Create a local jQuery variable to make jQuery Color workScott González2014-07-151-1/+5
| | | | | Fixes #10199 Closes gh-1282
* Datepicker: reject dates with two year digits when expecting 'yy'Rodrigo Menezes2014-07-141-1/+2
| | | | | Fixes #8353 Closes gh-1248
* Slider: Reset positioning when orientation changesScott González2014-07-021-0/+3
| | | | | Fixes #10105 Closes gh-1268
* Datepicker: Define en and en-US locales based on defaultsScott González2014-06-161-0/+2
| | | | | Fixes #6682 Closes gh-1269
* Dialog: Honor preventDefault when managing focusJörn Zaefferer2014-06-101-1/+1
| | | | | | | | If event.isDefaultPrevented() is true, the focus management is completely skipped, assuming the user manages focus manually. Fixes #10103 Closes gh-1265
* Dialog: Fix shift-tab handling, focus the correct elementJörn Zaefferer2014-06-101-1/+1
| | | | | | | | | | | Copy-paste error introduced in df6110c0d424ff3306fdd5576011f2dcf4d242d0 Updates the tabbing test to be more specific about which element should have focus, instead of only checking if focus is within the dialog. Ref #9646 Ref #10103 Closes gh-1264
* Dialog: Fix off() -> unbind() for jQuery 1.6 compatTimo Tijhof2014-05-271-1/+1
| | | | | | | Follows-up c9815f13b487d027ef9b. Fixes #10072 Closes gh-1256
* Spinner: Don't change value when changing min/max optionsDavid Petersen2014-05-261-1/+0
| | | | | Fixes #9703 Closes gh-1252
* Tabs: Move `aria-expanded` from active panel to active tabDavid Petersen2014-05-191-10/+8
| | | | | Fixes #9622 Closes gh-1251
* Widget: Remove misleading commentScott González2014-05-141-1/+0
|
* Autocomplete: Search if the user retypes the same valueTJ VanToll2014-05-121-2/+7
| | | | | Fixes #7434 Closes gh-1238
* All: Fix typosScott González2014-05-071-1/+1
| | | | Closes gh-1237
* Menu: Use item.outerHeight() in _scrollIntoViewJörn Zaefferer2014-05-061-1/+1
| | | | Fixes #9991
* Datepicker: Remove unnecessary mouseover triggerRafael Xavier de Souza2014-05-021-1/+1
| | | | | Fixes #5816 Closes gh-974
* Selectmenu: Default disabled option to nullScott González2014-04-211-0/+1
|
* Button: Remove `ui-state-active` when disabling buttonsDaniel DeGroff2014-04-211-1/+5
| | | | | Fixes #9602 Closes gh-1151
* Selectmenu: Simplify selection of focused item via keyboardScott González2014-04-181-5/+6
| | | | | | | | Don't go through menu to select the currently focused item. Renamed _selectMenu() to _selectFocusedItem() for clarity. Closes gh-1224
* Selectmenu: Don't use active items at allScott González2014-04-181-8/+2
| | | | | | | Menus only use active items for nested menus which selectmenu doesn't support. Selectmenu should only be working with focused items. Ref gh-1224
* Selectmenu: CleanupScott González2014-04-181-49/+62
| | | | Ref gh-1224
* Resizable: Remove bad workaround for draggable+resizableJörn Zaefferer2014-04-161-8/+0
| | | | | | | | | | | | This adds a compound test page for draggable+resizable, which had no coverage before. Using that page shows that there is no way to reproduce the behaviour described in the original ticket that caused this workaround, since its not possible to resize an element beyond the window boundaries. Therefore removing the workaround, which is 6+ years old and has no test coverage, seems like the sanest approach. Fixes #6939 Closes gh-1210
* Position: Don't create `$.support.offsetFractions`Scott González2014-04-031-3/+3
|
* Core: Don't create `$.support.selectstart`Scott González2014-04-031-5/+9
|
* Button: Properly refresh button sets with new radio buttonsScott González2014-04-011-8/+10
| | | | | Fixes #8975 Ref gh-888
* Datepicker: Fix date format for Ukranian localeScott González2014-03-311-1/+1
| | | | Fixes #9939
* Slider: Switch handles from <a href="#"> to <span tabindex="0">TJ VanToll2014-03-071-9/+5
| | | | | Fixes #9890 Closes gh-1207
* Selectmenu: Add UMD wrapperTJ VanToll2014-02-211-8/+18
|
* Core: Deprecate .focus( n ), replace in dialog with explicit timeoutsJörn Zaefferer2014-02-212-18/+22
| | | | Fixes #9646
* Selectmenu: Fall back to .ui-front searching for empty jQuery objectsJörn Zaefferer2014-02-211-1/+1
| | | | Fixes #9757
* I18n: Avoid indenting an entire fileRafael Xavier de Souza2014-02-1974-1509/+1583
| | | | Make code identation consistent with every other source.
* I18n: Rename all files, removing the "jquery.ui." prefixRafael Xavier de Souza2014-02-193-5/+3
| | | | | | | Amend fix for 21154cfa2e02ef1814a6aff68b14553bdad165cb; Ref #9464 Ref gh-1029
* Draggable: fix current JSCS violations.Mike Sherov2014-02-181-72/+69
|
* All: Updating copyright year to 2014TJ VanToll2014-01-2837-38/+38
|
* Autocomplete: Do not set value on multi-line inputYermo2014-01-281-1/+5
| | | | | | | | This fixes an issue where contenteditable text was getting overwritten when wrapping past the bottom or top of the autocomplete menu. Fixes #9771 Closes gh-1184
* Button: Ignore non-radio elements with the same nameTJ VanToll2014-01-281-2/+2
| | | | | Fixes #8761 Closes gh-1185
* All: Rename all files, removing the "jquery.ui." prefix;Rafael Xavier de Souza2014-01-24111-139/+139
| | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029
* All: Remove "Depends" commentRafael Xavier de Souza2014-01-2432-130/+0
| | | | | Ref #9464 Ref gh-1029
* All: Wrap I18n files with UMD return exportsRafael Xavier de Souza2014-01-2474-298/+1260
| | | | | Ref #9464 Ref gh-1029
* All: Wrap source files with UMD return exportsRafael Xavier de Souza2014-01-2438-99/+609
| | | | | Ref #9464 Ref gh-1029
* Autocomplete: Normalize falsy values, not just missing valuesScott González2014-01-221-2/+2
| | | | Fixes #9762