Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Dialog: Honor preventDefault when managing focus | Jörn Zaefferer | 2014-06-10 | 1 | -2/+25 |
| | | | | | | | | 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 element | Jörn Zaefferer | 2014-06-10 | 1 | -7/+9 |
| | | | | | | | | | | | 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 | ||||
* | Spinner: Don't change value when changing min/max options | David Petersen | 2014-05-26 | 1 | -3/+3 |
| | | | | | Fixes #9703 Closes gh-1252 | ||||
* | Tabs: Move `aria-expanded` from active panel to active tab | David Petersen | 2014-05-19 | 1 | -63/+63 |
| | | | | | Fixes #9622 Closes gh-1251 | ||||
* | Autocomplete: Search if the user retypes the same value | TJ VanToll | 2014-05-12 | 1 | -0/+21 |
| | | | | | Fixes #7434 Closes gh-1238 | ||||
* | Menu: Use item.outerHeight() in _scrollIntoView | Jörn Zaefferer | 2014-05-06 | 1 | -1/+1 |
| | | | | Fixes #9991 | ||||
* | Selectmenu: Work around test bug in IE | Scott González | 2014-04-24 | 1 | -1/+1 |
| | |||||
* | Spinner tests: Remove mousewheel plugin | Jörn Zaefferer | 2014-04-23 | 1 | -1/+0 |
| | | | | | | | | The plugin isn't needed nor used in the unit tests, which just trigger the appropriate events. This works around the failure in Firefox 27/28 that we'll try to track down separately. Ref #9988 | ||||
* | Selectmenu: Test cleanup | Scott González | 2014-04-22 | 1 | -19/+33 |
| | |||||
* | Selectmenu: Test cleanup | Scott González | 2014-04-22 | 2 | -49/+47 |
| | |||||
* | Selectmenu: Test cleanup | Scott González | 2014-04-22 | 1 | -45/+47 |
| | |||||
* | Selectmenu: Test cleanup | Scott González | 2014-04-21 | 1 | -50/+61 |
| | |||||
* | Selectmenu: Default disabled option to null | Scott González | 2014-04-21 | 1 | -2/+2 |
| | |||||
* | Selectmenu: Fix reference to jQuery in tests | Scott González | 2014-04-21 | 1 | -1/+1 |
| | |||||
* | Button: Whitespace | Scott González | 2014-04-21 | 1 | -7/+7 |
| | |||||
* | Button: Remove `ui-state-active` when disabling buttons | Daniel DeGroff | 2014-04-21 | 1 | -0/+35 |
| | | | | | Fixes #9602 Closes gh-1151 | ||||
* | Selectmenu: Remove unused var | Scott González | 2014-04-18 | 1 | -1/+1 |
| | |||||
* | Selectmenu: Don't use active items at all | Scott González | 2014-04-18 | 1 | -15/+11 |
| | | | | | | | Menus only use active items for nested menus which selectmenu doesn't support. Selectmenu should only be working with focused items. Ref gh-1224 | ||||
* | Resizable: Remove bad workaround for draggable+resizable | Jörn Zaefferer | 2014-04-16 | 3 | -4/+58 |
| | | | | | | | | | | | | 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 | ||||
* | Button: Properly refresh button sets with new radio buttons | Scott González | 2014-04-01 | 2 | -0/+27 |
| | | | | | Fixes #8975 Ref gh-888 | ||||
* | Spinner: Minor typo in stepUp()'s tests | TJ VanToll | 2014-03-30 | 1 | -1/+1 |
| | |||||
* | All: Rename jquery.js to exclude version in filename | Jörn Zaefferer | 2014-03-05 | 51 | -51/+51 |
| | |||||
* | Tests: Expose jQuery version select | Jörn Zaefferer | 2014-03-04 | 1 | -0/+11 |
| | | | | Makes use of the extended urlConfig in QUnit 1.14 | ||||
* | Core: Deprecate .focus( n ), replace in dialog with explicit timeouts | Jörn Zaefferer | 2014-02-21 | 2 | -28/+28 |
| | | | | Fixes #9646 | ||||
* | Selectmenu: Fix invalid empty options in visual test | Jörn Zaefferer | 2014-02-21 | 1 | -3/+3 |
| | |||||
* | Selectmenu: Fix whitespace in visual test | Jörn Zaefferer | 2014-02-21 | 1 | -8/+8 |
| | |||||
* | Selectmenu: Refactor appendTo option tests | Jörn Zaefferer | 2014-02-21 | 1 | -16/+27 |
| | |||||
* | Selectmenu: Fall back to .ui-front searching for empty jQuery objects | Jörn Zaefferer | 2014-02-21 | 1 | -1/+6 |
| | | | | Fixes #9757 | ||||
* | Autocomplete: Fix assertion message in appendTo option test | Jörn Zaefferer | 2014-02-21 | 1 | -1/+1 |
| | |||||
* | Dialog: Work around subpixel issues in dialog resizable test | Jörn Zaefferer | 2014-02-20 | 1 | -4/+7 |
| | | | | | | | | | Switching to checking the size of the content element. We should be checking the dimensions of the .ui-dialog element, but that currently fails in Chromium-based browsers. Once we start using box-sizing: border-box, we should try to revert this change. Ref #9845 | ||||
* | Tests: Update to sane QUnit markup | Jörn Zaefferer | 2014-02-20 | 42 | -210/+42 |
| | |||||
* | Draggable Tests: fix IE scroll tests affected by focus issues. | Mike Sherov | 2014-02-18 | 1 | -5/+12 |
| | | | | | Calling element.focus() causes scroll in IE. In order to correctly test scroll behavior, we must calculate scrollTop on the drag event, before .focus is called. | ||||
* | Draggable Tests: fix IE offset tests affected by focus issues. | Mike Sherov | 2014-02-18 | 1 | -1/+1 |
| | | | | | | Calling element.focus() causes scroll in IE. In order to correctly test scroll behavior, we must rely on the actual calculated offset instead of the helper offset to ensure cross browser test consistency. | ||||
* | Draggable: fix current JSCS violations. | Mike Sherov | 2014-02-18 | 2 | -28/+38 |
| | |||||
* | Tests: Use .bind() instead of .on() | Scott González | 2014-02-11 | 3 | -5/+5 |
| | |||||
* | Tests: Fix andenable a couple of unit tests: dialog, tooltip, draggable | Brian J. Dowling | 2014-02-11 | 2 | -3/+3 |
| | | | | | | | | Some unit tests were disabled in phantomjs. Dialog and draggable depended on a larger viewPort. Tooltip just worked, that was reenabled as well. Closes gh-1173 | ||||
* | Autocomplete: Do not set value on multi-line input | Yermo | 2014-01-28 | 1 | -0/+26 |
| | | | | | | | | 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 name | TJ VanToll | 2014-01-28 | 1 | -0/+14 |
| | | | | | Fixes #8761 Closes gh-1185 | ||||
* | All: Rename all files, removing the "jquery.ui." prefix; | Rafael Xavier de Souza | 2014-01-24 | 53 | -333/+333 |
| | | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029 | ||||
* | Tests: Add link to selectmenu in unit index | Scott González | 2014-01-24 | 1 | -0/+1 |
| | |||||
* | Test: Whitespace | Scott González | 2014-01-24 | 1 | -1/+1 |
| | |||||
* | Autocomplete: Normalize falsy values, not just missing values | Scott González | 2014-01-22 | 4 | -23/+50 |
| | | | | Fixes #9762 | ||||
* | Autocomplete: Fall back to .ui-front searching for empty jQuery objects | Scott González | 2014-01-20 | 1 | -11/+26 |
| | | | | Fixes #9755 | ||||
* | Draggable: fix changing containment | Ben Higgins | 2014-01-20 | 1 | -2/+7 |
| | | | | | | | | | | | | | If containment was set such that relative_container is set by _setContainment, and then containment changes to e.g. "document", "window", or an array, relative_container would not be unset, causing incorrect containment of the draggable. Add a unittest to check that containment with an array works after previously being set to "parent". Fixes #9733 Closes gh-1176 | ||||
* | Tests: sortable: fix assert message. | Andrei Picus | 2014-01-20 | 1 | -1/+1 |
| | | | | | | Changed 'stop' to 'over'. Closes gh-1174 | ||||
* | Tests: Fix draggable_options expected test count to be dynamic | Brian J. Dowling | 2014-01-16 | 1 | -1/+2 |
| | | | | | | | | The test count was previously incremented to 8 when normally 6 tests are run. After figuring out the dynamic test code, I just made the expect depend on the same array length Also re-enabled the test in the Gruntfile since it now passes. | ||||
* | Widget: Support events with dashes and colons | Ruslan Yakhyaev | 2014-01-16 | 1 | -2/+17 |
| | | | | | Fixes #9708 Closes gh-1159 | ||||
* | Slider & Interactions: Add Windows 8 touch support | TJ VanToll | 2014-01-15 | 2 | -0/+35 |
| | | | | | | Fixes #9709 Fixes #9710 Closes gh-1152 | ||||
* | Position: Avoid reading overflow css on documents | Thomas Meyer | 2014-01-15 | 1 | -1/+8 |
| | | | | | Fixes #9533 Closes gh-1072 | ||||
* | Resizable: Only resize/reposition if size is greater than specified grid | Kris Borchers | 2014-01-15 | 1 | -0/+23 |
| | | | | | Fixes #9611 Closes gh-1132 |