Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Tooltip: Allow tracking tooltips to be off by a fraciton of a pixel | Scott González | 2016-07-07 | 1 | -2/+10 |
| | | | | Closes gh-1718 | ||||
* | Tooltip: Fix re-enabling of delegated tooltips | Scott González | 2016-04-21 | 1 | -0/+14 |
| | | | | | Fixes #14950 Closes gh-1699 | ||||
* | Tooltip: Shift to use no globals | Amanpreet Singh | 2016-04-14 | 5 | -167/+177 |
| | |||||
* | Tooltip: Style updates | Alexander Schmitz | 2015-09-11 | 7 | -109/+114 |
| | | | | Ref #14246 | ||||
* | Tooltip: Style updates | Alexander Schmitz | 2015-08-21 | 4 | -4/+4 |
| | | | | | Ref #14246 Ref gh-1588 | ||||
* | Tooltip: Move tooltip into widgets directory | Alexander Schmitz | 2015-08-08 | 7 | -7/+7 |
| | | | | Ref #13885 | ||||
* | Tooltip: Remove core event/alias and deprecated module dependencies | Alexander Schmitz | 2015-05-20 | 3 | -10/+10 |
| | |||||
* | Tooltip: Remove name attribute from elements in the live region | Jiabao Wu | 2015-04-22 | 1 | -0/+25 |
| | | | | | Fixes #11272 Closes gh-1544 | ||||
* | Tests: Fix AMD loading in IE8 | Scott González | 2015-04-17 | 2 | -0/+2 |
| | | | | | It appears that we must load require.js via a standard script tag in order for it to work properly in IE8. | ||||
* | Tests: Rename files | Scott González | 2015-04-09 | 8 | -0/+0 |
| | | | | Ref gh-1528 | ||||
* | Tooltip: Convert tests to new infrastructure | Scott González | 2015-04-09 | 9 | -69/+48 |
| | | | | | Ref #10119 Ref gh-1528 | ||||
* | Tests: Switch to the new qunit-composite module | Scott González | 2015-04-07 | 1 | -2/+2 |
| | | | | | | This module was created from our existing implementation. Closes gh-1532 | ||||
* | Tests: Handle jQuery git returning `null` for empty attributes | Scott González | 2015-03-25 | 2 | -3/+2 |
| | | | | | | jQuery now returns `null` for empty attributes instead of `undefined`. Closes gh-1516 | ||||
* | Tooltip: Use new has/lacksClasses assertions for all class checks | Alexander Schmitz | 2015-03-11 | 2 | -5/+5 |
| | |||||
* | Tooltip: Add classes option | Alexander Schmitz | 2015-03-11 | 7 | -13/+100 |
| | | | | | Ref #7053 Ref gh-1411 | ||||
* | Widget: Add classes option and _add/_remove/_toggleClass methods | Alexander Schmitz | 2015-03-11 | 1 | -0/+1 |
| | | | | | Fixes #7053 Closes gh-1411 | ||||
* | Tooltip: Register event handlers before content is loaded | Marco Ziech | 2015-02-25 | 1 | -0/+22 |
| | | | | | | Fixes #8740 Closes gh-1053 Closes gh-1456 | ||||
* | All: Drop support for jQuery 1.6.x | Jörn Zaefferer | 2015-01-13 | 2 | -11/+4 |
| | | | | | | | | | | | Affects core, effects, position and widget. Only position has unit tests that fail with jQuery 1.6 without the workaround. Drops the 1.6.x copies jQuery of jQuery and removes them from the select in the testsuites. Fixes #10723 Closes gh-1422 | ||||
* | Tooltip: Accept HTMLElement and jQuery objects for the content option | Daniel Owens | 2015-01-12 | 1 | -0/+24 |
| | | | | | | Fixes #9278 Closes #983 Closes #1421 | ||||
* | Tooltip: Properly track hiding and closing for delegated tooltips | Scott González | 2014-10-09 | 1 | -0/+48 |
| | | | | | Fixes #10602 Closes gh-1353 | ||||
* | Build: Pull in jquery.simulate.js from Bower | Mike Sherov | 2014-08-22 | 1 | -1/+1 |
| | | | | Fixes #10563 | ||||
* | Tooltip: Treat the tooltip as closing until it's fully removed | Scott González | 2014-08-06 | 1 | -0/+20 |
| | | | | | | | This ensures that we don't trigger the close event twice if the tooltip is destroyed during the hide animation. Closes gh-1306 | ||||
* | Tests: Fix composite tests | Scott González | 2014-08-01 | 1 | -1/+1 |
| | |||||
* | Build: Reorganize external directory | Scott González | 2014-06-24 | 2 | -4/+4 |
| | | | | | | | Put each external library into its own directory. Move jquery.js to external. Ref gh-1266 | ||||
* | All: Rename jquery.js to exclude version in filename | Jörn Zaefferer | 2014-03-05 | 1 | -1/+1 |
| | |||||
* | Tests: Update to sane QUnit markup | Jörn Zaefferer | 2014-02-20 | 2 | -10/+2 |
| | |||||
* | All: Rename all files, removing the "jquery.ui." prefix; | Rafael Xavier de Souza | 2014-01-24 | 1 | -5/+5 |
| | | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029 | ||||
* | Tooltip: Preserve the title after disabling twice | Michael Wiencek | 2014-01-09 | 1 | -1/+7 |
| | | | | | Fixes #9719 Closes gh-1154 | ||||
* | Tooltip: Lowercase test html for IE7/8 compat | Jörn Zaefferer | 2014-01-06 | 1 | -1/+1 |
| | |||||
* | Tooltip: On close and destroy only set title if empty or undefined | Daniel DeGroff | 2014-01-06 | 1 | -0/+35 |
| | | | | | | | | | | | | | | | | | | | Ticket #8925 states that changes to the title attribute while the tooltip is open are lost on tooltip close. In the close and destroy functions, the title attribute is always written if a value was stored in the element on open. It is possible the attribute has changed and restoring the initial value may overwrite the current value. If the value is empty or undefined as set in open, do not set the title attribute. This fix has the limitation that if the user removed the title attribute or set the value to an empty string the original title value would be restored on close and destroy. Fixes #8925 | ||||
* | Tooltip: Improve accessibility by adding content to an aria-live div | Dylan Barrell | 2013-12-19 | 2 | -7/+30 |
| | | | | | Fixes #9610 Closes gh-1118 | ||||
* | Updating jQuery to 1.10.2. | Bruno M. Custódio | 2013-07-05 | 1 | -1/+1 |
| | | | | | Adding jQuery 1.10.0, 1.10.1, 1.10.2, 2.0.0, 2.0.1, 2.0.2 and 2.0.3 to the tests directory. | ||||
* | Widget: Stop setting ui-state-disabled and aria by default on setting ↵ | Scott González | 2013-03-14 | 1 | -1/+6 |
| | | | | | | | | | | disabled option. Fixes #5973 - Resizable: disabled should not have the ui-state-disabled class or aria attribute aria-disabled Fixes #5974 - Draggable: disabled should not have the ui-state-disabled class or aria attribute aria-disabled Fixes #6039 - Droppable: disabled should not have ui-state-disabled This reverts commit 23771d38ba9d2663f6db0243c8e992dc7ff6844a. | ||||
* | Revert "Widget: Stop setting ui-state-disabled and aria by default on ↵ | Scott González | 2013-03-14 | 1 | -6/+1 |
| | | | | | | setting disabled option." This needs to wait for a major release. This reverts commit 4d67f4f34908a50ef88f95df4103ee001b777e45. | ||||
* | Widget: Stop setting ui-state-disabled and aria by default on setting ↵ | Mike Sherov | 2013-03-11 | 1 | -1/+6 |
| | | | | | | | | disabled option. Fixes #5973 - Resizable: disabled should not have the ui-state-disabled class or aria attribute aria-disabled Fixes #5974 - Draggable: disabled should not have the ui-state-disabled class or aria attribute aria-disabled Fixes #6039 - Droppable : disabled should not have ui-state-disabled | ||||
* | Updating 'jQuery' to 1.9.1. | Bruno M. Custódio | 2013-02-05 | 1 | -1/+1 |
| | |||||
* | Updating to jQuery 1.9.0 | Kris Borchers | 2013-01-17 | 1 | -1/+1 |
| | |||||
* | Tooltip: Escape the title attribute so that it's treated as text and not ↵ | Scott González | 2012-11-27 | 1 | -0/+14 |
| | | | | HTML. Fixes #8861 - Tooltip: XSS vulnerability in default content. | ||||
* | Upgrade jQuery to 1.8.3. | Scott González | 2012-11-14 | 1 | -1/+1 |
| | |||||
* | Tooltip: Handle synthetic focusin events. Fixes #8740 - Tooltip: Does not ↵ | Scott González | 2012-11-14 | 1 | -0/+27 |
| | | | | hide consistently with dynamically loaded content. | ||||
* | Tooltip: Ignore disabled checks when closing. Fixes #8758 - Tooltip: Tooltip ↵ | Scott González | 2012-11-09 | 1 | -0/+13 |
| | | | | is shown, but not hidden if element has class=ui-state-disabled. | ||||
* | Tooltip: Fix default for position option, follow-up to 1d9eab1. | Jörn Zaefferer | 2012-11-05 | 1 | -1/+1 |
| | |||||
* | Tooltip: Check type on event directly, preventing TypeError when ↵ | Jörn Zaefferer | 2012-11-05 | 1 | -0/+8 |
| | | | | programmatically moving focus to track-toolipped-input. Fixes #8747 - Tooltip: Using the track option within dialogs creates JS errors | ||||
* | Tooltip: Use attributes, not properties, when checking for parent tooltips. ↵ | Scott González | 2012-10-28 | 2 | -0/+25 |
| | | | | Fixes #8742 - Tooltip shows incorrect message in chrome if there is input with name='title' in a form. | ||||
* | Tooltip: Run _disable when disabled option is set on create. Fixes #8712 - ↵ | Jörn Zaefferer | 2012-10-24 | 1 | -0/+8 |
| | | | | Tooltip: Disabled tooltips on initialization. | ||||
* | Tooltip tests: Fixed new default value for position option. | Scott González | 2012-10-23 | 1 | -2/+2 |
| | |||||
* | Build: Enable "unused" option in jshint - Remove unused variables from ↵ | Mike Sherov | 2012-10-23 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | codebase. - Closes gh-788 Squashed commit of the following: commit 7f19f92c646f180bc067bb24123175251a64a9d6 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 10:34:28 2012 -0400 put back in fake args for signatures that we want to keep commit 257505a9e69da0c53e3a989dab87a13112045a29 Author: Mike Sherov <mike.sherov@gmail.com> Date: Tue Oct 23 08:10:20 2012 -0400 changes per @scott_gonzalez commit 12725480cb58e70865e5aa6e735009b6b035c8f3 Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:54:05 2012 -0400 clean up unused vars in ui directory commit 563595e7aee5d4a5c096b2d1de655abdf920aacd Author: Mike Sherov <mike.sherov@gmail.com> Date: Mon Oct 22 22:37:42 2012 -0400 clean up unused vars in grunt and tests | ||||
* | Tooltip: Unit test for nested tooltips | Jörn Zaefferer | 2012-10-21 | 2 | -1/+17 |
| | |||||
* | Tooltip: Update events test to cover correct behaviour | Jörn Zaefferer | 2012-10-21 | 1 | -32/+6 |
| | |||||
* | Tooltip: Do not attempt to position if tooltip is hidden. Fixed #8644 - ↵ | Andrew Couch | 2012-10-21 | 1 | -0/+35 |
| | | | | Delayed tooltips set to track should reposition when being shown for the first time. |