aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tooltip.js
Commit message (Collapse)AuthorAgeFilesLines
* Tooltip: Avoid errors on mouseover of tooltips with parents that have no ↵Mike Sherov2013-01-111-1/+3
| | | | | title attribute. Fixes #8955 - Tooltip: error when parent element has no title attribute using jQuery <1.7 This corrects a failing test with core 1.6, so no new test is required.
* Update copyright year to 2013.Scott González2013-01-101-1/+1
|
* Tooltip: Clear the tracking interval on close. Fixes #8920 -Tooltip ↵Scott González2012-12-181-1/+4
| | | | potential setinterval endless loop.
* All: Use .addBack() instead of .andSelf().Scott González2012-12-141-2/+2
|
* Tooltip: Escape the title attribute so that it's treated as text and not ↵Scott González2012-11-271-1/+3
| | | | HTML. Fixes #8861 - Tooltip: XSS vulnerability in default content.
* Tooltip: Removed logic for handling tracking tooltips which gain focus while ↵Scott González2012-11-141-14/+2
| | | | open (we no longer mix events). Fixes #8799 - Tooltip: tracking fails on nested elements.
* Tooltip: Handle synthetic focusin events. Fixes #8740 - Tooltip: Does not ↵Scott González2012-11-141-1/+10
| | | | hide consistently with dynamically loaded content.
* Tooltip: Ignore disabled checks when closing. Fixes #8758 - Tooltip: Tooltip ↵Scott González2012-11-091-1/+1
| | | | is shown, but not hidden if element has class=ui-state-disabled.
* Tooltip: Use ui-tooltip-open instead of tooltip-open for data key.Scott González2012-11-051-4/+4
|
* Tooltip: Make 'flipfit flip' the collision default to avoid the tooltip ever ↵Jörn Zaefferer2012-11-051-1/+1
| | | | overlapping the trigger. Also fix max-width for custom-content demo. Fixes #8739 - Tooltip: Default positioning on large items off.
* Tooltip: Check type on event directly, preventing TypeError when ↵Jörn Zaefferer2012-11-051-1/+1
| | | | 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ález2012-10-281-7/+8
| | | | Fixes #8742 - Tooltip shows incorrect message in chrome if there is input with name='title' in a form.
* Removed bgiframe.Scott González2012-10-261-3/+0
|
* Tooltip: Run _disable when disabled option is set on create. Fixes #8712 - ↵Jörn Zaefferer2012-10-241-0/+4
| | | | Tooltip: Disabled tooltips on initialization.
* Build: Enable "unused" option in jshint - Remove unused variables from ↵Mike Sherov2012-10-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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: Position below the element and set a max width of 300px to more ↵Scott González2012-10-231-2/+2
| | | | closely match native tooltip behavior. Fixes #8718 - tooltip flickers when too long.
* Tooltip: Do not attempt to position if tooltip is hidden. Fixed #8644 - ↵Andrew Couch2012-10-211-2/+16
| | | | Delayed tooltips set to track should reposition when being shown for the first time.
* Tooltip: handle removal of elements with delegated tooltips. Fixed #8646 - ↵Andrew Couch2012-10-211-2/+14
| | | | Delegated tooltips don't close when the tooltipped element is removed
* Tooltip: Only bind blur when opening via focus, mouseleave for mouseover. ↵Jörn Zaefferer2012-10-211-15/+10
| | | | Remove the keep-open-on-focusout workaround. Now matching behaviour described in ARIA Authoring Practices. Fixes #8699 - Moving focus on click of a tooltipped element shows native tooltip in IE/Firefox on Windows
* Tooltip: Fix nested tooltips (on hover) by closing parent tooltips and ↵Jörn Zaefferer2012-10-211-4/+34
| | | | removing title attributes. Fixes #8700 - Overlapping tooltipped elements shows native tooltip for one of the elements
* Tooltip: Comment why we need to use closestJörn Zaefferer2012-10-191-1/+3
|
* Tooltip: Change the default items selector to exclude disabled elements. ↵Scott González2012-10-121-1/+2
| | | | Fixes #8661 - Tooltip doesn't hide on disabled anchor element [IE only].
* Tooltip: Better cleanup on destroy. Fixes #8627 - The Tooltip destroy method ↵Scott González2012-10-051-1/+17
| | | | is not clearing up the data properties.
* Tooltip: Check if event exists before checking properties in open(). Fixes ↵Scott González2012-10-051-1/+1
| | | | #8626 - Programatically opening a tooltip with out giving an event results in a javascript error.
* typoScott González2012-10-041-1/+1
|
* Tooltip: Stop tracking the mouse if the element gains focus. Fixes #8622 - ↵Scott González2012-10-041-0/+2
| | | | Tooltip tracks mouse when the element has focus.
* Updated docs URLS.Scott González2012-09-261-0/+2
|
* Tooltip: Allow strings for content option.Scott González2012-08-311-1/+6
|
* Tooltip: Update open tooltips if the content option changes. Fixes #8544 - ↵Scott González2012-08-311-7/+21
| | | | Unable to update tooltip content dynamically.
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* Tooltip: Reposition tracking tooltips when they gain focus.Scott González2012-06-141-5/+13
|
* Tooltip: Add track optionJörn Zaefferer2012-06-141-5/+24
|
* Widget: Added _off() for removing event handlers. Fixes #7795 - Widget: _on ↵Scott González2012-06-141-1/+1
| | | | and _off.
* Widget: Rename _bind() to _on(). Partial fix for #7795 - Widget: _on and _off.Scott González2012-06-131-2/+2
|
* Tooltip: When calling the content response method multiple times, only ↵Scott González2012-06-131-7/+10
| | | | update the content, don't do any other processing.
* Tooltip: Cleanup commentsJörn Zaefferer2012-05-221-2/+3
|
* Tooltip: Handle multiple aria-describedby values.Scott González2012-05-221-4/+29
|
* Tooltip: Fix the accessible properties IE exposesJörn Zaefferer2012-05-091-4/+8
|
* 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.
* Tooltip: Remove bad docs links from headersJörn Zaefferer2012-04-171-2/+0
|
* Lint fixes.Scott González2012-04-021-1/+1
|
* Protect all copyright notices against minificationJo Liss2012-04-021-1/+1
| | | | | | | For instance, this is useful for the jquery-ui-rails gem, which does not use jQuery UI's own minification, but relies on Rails to minify the files where necessary. Rails in turn uses UglifyJS for JS and YUI for CSS, both of which respect the /*! ... */ convention.
* Tooltip: Store the title in ui-tooltip-title data only if the element has a ↵Scott González2012-03-301-1/+1
| | | | title.
* Tooltip: Avoid infinite recursion when disabling a tooltip on close.Scott González2012-03-291-0/+8
|
* Updated copyright year.Scott González2012-03-081-1/+1
|
* Update data naming for Tooltip. Partial fix for #7810Jörn Zaefferer2012-03-011-7/+7
|
* Tooltip: Replace blur with focusout to deal with inputs nested in tooltipped ↵Jörn Zaefferer2012-02-231-2/+2
| | | | elements.
* Tooltip: Mark target to prevent async results showing a tooltip that was ↵Jörn Zaefferer2012-02-191-0/+7
| | | | closed already
* Tooltip: Document why we don't use removeAttrJörn Zaefferer2012-02-191-1/+4
|