aboutsummaryrefslogtreecommitdiffstats
path: root/ui
Commit message (Collapse)AuthorAgeFilesLines
* Sortable: Remove uses of self var; use that var.Scott González2012-05-091-41/+37
|
* Selectable: Remove uses of self var; use that var.Scott González2012-05-091-14/+14
|
* Resizable: Remove uses of self var; use that var.Scott González2012-05-091-93/+93
|
* Dialog: Remove uses of self var; use that var.Scott González2012-05-091-94/+91
|
* Slider: Use base destroy method.Scott González2012-05-091-6/+2
|
* Slider: Remove uses of self var; use new APIs or that var.Scott González2012-05-091-71/+51
|
* Tooltip: Fix the accessible properties IE exposesJörn Zaefferer2012-05-091-4/+8
|
* Autocomplete: Remove uses of self var; use new APIs or that var.Scott González2012-05-091-126/+120
|
* Menu: Whitespacekborchers2012-05-081-4/+4
|
* Menu: Remove close delay for keyboard interaction to fix an issue with ↵kborchers2012-05-081-3/+7
| | | | properly adding and removing ui-state-active class during quick navigation through submenus
* Accordion: Don't change corner classes on the collapsing panel's header ↵Scott González2012-05-081-5/+8
| | | | until after the animation completes. Fixed #8224 - bug: Accordion corner style applying order.
* Effects: Check for anonymous content being exposed via ↵Scott González2012-05-071-0/+9
| | | | document.activeElement. Fixes #8288 - Regression: jquery-ui animations focus fix causes Firefox Security Manager veto.
* Dialog: Removed trailing whitespace.Scott González2012-05-071-6/+6
|
* Dialog: Handle escape for all overlays. Fixes #8300 - Dialog: Incorrect ↵Jay Merrifield2012-05-071-11/+15
| | | | behavior for ESCAPE with multiple modal dialogs.
* Sortable: Moved change of helper position css. Fixed #5321 – Helper in a ↵martinf552012-05-071-5/+5
| | | | bottom-positioned Sortable is positioned wrong on drag start.
* Tooltip: Only check if the element is active if the event that is causing ↵Scott González2012-04-301-1/+4
| | | | the tooltip to close is not focusout.
* Sortable: update placeholder when axis is x or y. Fixed #8274 - placeholder ↵Jason Moon2012-04-301-2/+2
| | | | doesn't move when dragging outside of container element
* Draggable: Don't run stop methods for elements that have been removed. ↵TJ VanToll2012-04-301-2/+8
| | | | Fixed #8269 - Removing draggable element on drop : a(this).data("draggable") is undefined.
* Autocomplete: Prevent the default action on escape when the menu is open. ↵Scott González2012-04-301-0/+4
| | | | Fixes #8282 - Double escape clear IE form, continue Ticket #7643.
* Revert "Sortable: Always set placeholder size when necessary. Fixes #8262 - ↵Scott González2012-04-301-2/+3
| | | | | | jQuery UI 1.8.19 don't respect forcePlaceholderSize." This reverts commit 4f19289c10e733a07cf60435c2e5df4ed2e23d37.
* Revert "Sortable: modified the contents of placeholder to a single " ". ↵Scott González2012-04-301-1/+1
| | | | | | Fixed #8135 - sortable: Horizontal sortable shifts causes elements to shift down." This reverts commit b6e1f25ab8c038306146a6ead041dc18bfb9e8c2.
* Effects Tests: Disabling focus based test - need some help here @scottgonzalezCorey Frang2012-04-301-1/+1
|
* Effects: Updating unit tests to use some more stable logic hopefullyCorey Frang2012-04-301-10/+9
|
* Removed some unused variables.Scott González2012-04-284-15/+3
|
* Accordion: Removed unused variables.Scott González2012-04-251-4/+2
|
* Position: Remove at-center guards, take at:center into account instead. ↵Jörn Zaefferer2012-04-241-10/+6
| | | | Fixes #8127 - collision:flip should be supported for at:center
* Merge branch 'position-notification'Jörn Zaefferer2012-04-242-102/+131
|\
| * Position: Fix scrollbar calculcation to correctly take overflow:scroll into ↵Jörn Zaefferer2012-04-241-5/+6
| | | | | | | | account, along with unit tests
| * Merge branch 'master' into position-notificationScott González2012-04-234-6/+24
| |\ | | | | | | | | | | | | Conflicts: tests/unit/position/position_core_within.js
| * \ Merge branch 'master' into position-notificationScott González2012-04-2010-180/+175
| |\ \
| * | | Position: Use offsets for all calculations in feedback API.Scott González2012-04-201-4/+4
| | | |
| * | | Position: Use targetElem for events to maintain consistency.Scott González2012-04-201-1/+1
| | | |
| * | | Position: Simplify border calculations for feedback.Scott González2012-04-201-2/+2
| | | |
| * | | Position: Also create a local reference for Math.round; update other Math ↵Jörn Zaefferer2012-04-201-8/+9
| | | | | | | | | | | | | | | | references
| * | | Position: offset() always returns null for window, so provide default 0/0 ↵Jörn Zaefferer2012-04-201-3/+3
| | | | | | | | | | | | | | | | coordinates to avoid checks further down
| * | | Position: Move Math.abs/max definitions to the top of the fileJörn Zaefferer2012-04-201-6/+6
| | | |
| * | | Position: Cleanup variable definitions, move undefined vars to the topJörn Zaefferer2012-04-181-11/+6
| | | |
| * | | Position: Make getOffsets and parseCss helpers local functions, no need to ↵Jörn Zaefferer2012-04-181-15/+16
| | | | | | | | | | | | | | | | expose those
| * | | Tooltip: Remove bad docs links from headersJörn Zaefferer2012-04-171-2/+0
| | | |
| * | | Position: Expose target and element dimensions to allow further ↵Jörn Zaefferer2012-04-131-2/+15
| | | | | | | | | | | | | | | | customization, like calculating the angle between the two elements
| * | | Position: Cache the scrollbarWidth calculation resultJörn Zaefferer2012-04-131-2/+6
| | | |
| * | | Position: Extract getWithinInfo method, use that for tests that call ↵Jörn Zaefferer2012-04-131-18/+20
| | | | | | | | | | | | | | | | getScrollInfo directly, pass within info to that, gets rid of a few more DOM accesses
| * | | Position: Finish refactoring of within dataJörn Zaefferer2012-04-131-18/+17
| | | |
| * | | Position: Refactor within-data to avoid calculating that more then needed. ↵Jörn Zaefferer2012-04-121-20/+23
| | | | | | | | | | | | | | | | Not quite done, but good enough for now
| * | | Position: Inline center variable. Not necessary with gzip (or a good ↵Jörn Zaefferer2012-04-121-12/+11
| | | | | | | | | | | | | | | | minifier) in place, wasn't consistent with other inline strings
| * | | Position: add target property to feedback argument, to allow additional ↵Jörn Zaefferer2012-04-121-1/+2
| | | | | | | | | | | | | | | | calculation in user's using callback
| * | | Position: Cache Math.abs and Math.max lookupsJörn Zaefferer2012-04-121-4/+6
| | | |
| * | | Position: Refactor css parse callsJörn Zaefferer2012-04-121-6/+7
| | | |
| * | | Position: Calculate scrollInfo just once, not for each elementJörn Zaefferer2012-04-121-1/+1
| | | |
| * | | Position: Refactor offset calculationsJörn Zaefferer2012-04-121-12/+8
| | | |