aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.tooltip.js
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Widget: Remove method argument from _super and _superApply. Was a left-over ↵Jörn Zaefferer2011-11-181-1/+1
| | | | from first implementation, not necessary anymore.
* Widget: Added window and document properties. Fixes #7801 - Widget: Add ↵Scott González2011-10-201-2/+2
| | | | document and window properties.
* Tooltip: Change default to flipfit for both dimensions, now that it is ↵Jörn Zaefferer2011-08-181-1/+1
| | | | available. Fixes positioning issue when tooltipped element is at the top of the screen.
* Tooltip: Handle ESCAPE key event to close tooltip when target has focus.Jörn Zaefferer2011-07-131-2/+9
|
* Tooltip: Pass the tooltip element in the open and close events.Scott González2011-05-301-8/+5
|
* Widget: Fixed _show() and _hide() implementation and added tests.Scott González2011-05-301-1/+7
|
* Tooltip: Fixed handling of disabled tooltips.Scott González2011-05-291-18/+43
|
* Tooltip: Added some comments.Scott González2011-05-291-1/+3
|
* Tooltip: Use bgiframe if availableScott González2011-05-291-0/+3
|
* Tooltip: Don't close tooltips on mouseleave if the element is still focused.Scott González2011-05-291-2/+5
|
* Tooltip: Don't mess with the title attribute if it doesn't exist. Prevents ↵Scott González2011-05-291-2/+11
| | | | the creation of a title attribute if there wasn't one to begin with.
* Tooltip: Change default collision detection to 'flip fit' since the default ↵Scott González2011-05-291-1/+2
| | | | vertical positioning is centered and can't flip
* Tooltip: Coding standards.Scott González2011-05-281-11/+16
|
* Tooltip: Alphabetized options.Scott González2011-05-281-3/+3
|
* Tooltip: Removed click handler.Scott González2011-05-281-3/+1
|
* Tooltip: Fixed tracking of tooltip elements.Scott González2011-05-281-3/+2
|
* Tooltip: Fixed tooltipClass option and added test.Scott González2011-05-281-1/+1
|
* Tooltip: Allow content updates via async response regardless of whether a ↵Scott González2011-05-281-6/+1
| | | | sync response came back. Added more tests.
* Tooltip: Added a destroy method to remove generated tooltip elements.Scott González2011-05-281-3/+17
|
* All: Moved version numbers into prototypes. Fixed #7436 - Widget: Store ↵Scott González2011-05-281-2/+1
| | | | version numbers on instances.
* Tooltip: Proper handled of disabled option.Scott González2011-05-281-6/+6
|
* Tooltip: Cleanup.Scott González2011-05-281-4/+6
|
* Tooltip: Changed custom animation demo and changed the logic for showing ↵Scott González2011-05-281-4/+9
| | | | tooltips so custom position options can perform animations.
* Tooltip: Coding standards.Scott González2011-05-271-39/+45
|
* Tooltip: Also close on click. Essential for tooltips on menu buttons.Jörn Zaefferer2011-05-041-1/+2
|
* Tooltip: Replace offset property with inline my+offset to make it easierJörn Zaefferer2011-05-021-3/+2
| | | | | to override the offset. Fixes the odd offset in the video player demo. Also doesn't need units.
* Tooltip: Add support for delaying showing/hiding. Still need to figurejzaefferer2011-04-211-2/+2
| | | | out how to combine that with non-animated show/hide.
* Stop show animation on hide. Now that we don't reuse the tooltipjzaefferer2011-04-151-0/+1
| | | | element, we can safely do that.
* Custom tooltip animations based on widget-animations branch.jzaefferer2011-04-151-2/+2
|
* Overhaul tooltip implementation. Avoid queuing and other problems byjzaefferer2011-04-131-62/+68
| | | | | | | | | creating the tooltip element on the fly, never reusing it. Use aria-describedby attribute to find the associated tooltip again. Allows customizing animations much easier (just replace fadeIn/fadeOut), still open. Updated demos and visual test to replace now-missing .widget() method. Added tooltipClass for that.