aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.autocomplete.js
Commit message (Collapse)AuthorAgeFilesLines
* All: Rename all files, removing the "jquery.ui." prefix;Rafael Xavier de Souza2014-01-241-617/+0
| | | | | | | - By executing https://gist.github.com/jzaefferer/893fcf70b7eebc1dc271; Fixes #9464 Closes gh-1029
* All: Remove "Depends" commentRafael Xavier de Souza2014-01-241-6/+0
| | | | | Ref #9464 Ref gh-1029
* All: Wrap source files with UMD return exportsRafael Xavier de Souza2014-01-241-2/+20
| | | | | Ref #9464 Ref gh-1029
* Autocomplete: Normalize falsy values, not just missing valuesScott González2014-01-221-2/+2
| | | | Fixes #9762
* Autocomplete: Fall back to .ui-front searching for empty jQuery objectsScott González2014-01-201-1/+1
| | | | Fixes #9755
* Autocomplete: Announce autocomplete correctly in all ATs.Dylan Barrell2014-01-141-10/+13
| | | | | Fixes #9631 Closes gh-1153
* Autocomplete: WhitespaceJörn Zaefferer2013-12-071-11/+11
|
* Fix various coding style issuesJörn Zaefferer2013-11-131-3/+2
|
* Autocomplete: Append liveRegion to body to support detached init. Fixes ↵Jörn Zaefferer2013-10-191-1/+1
| | | | #9590 - Dynamically adding input field breaks auto-complete's accessibility for screen readers
* Autocomplete: Don't add anchors to items in generated menuKris Borchers2013-10-051-3/+1
|
* Autocomplete: Scope race condition handling to the instance. Fixes #9334 - ↵Scott González2013-05-281-16/+13
| | | | Autocomplete: Multiple instances should be able to start asynchronous requests simultaneously.
* Autocomplete: Remove handling for NUMPAD_ENTER.Scott González2013-05-061-1/+0
|
* Autocomplete: Don't prevent keypress for multiline. Fixed #8911 - ↵Jason Moon2013-04-251-1/+3
| | | | Autocomplete: Unable to use up/down arrow keys in a textarea (Firefox).
* Autocomplete: Refactored _response() so that requestIndex is defined closer ↵Scott González2013-04-251-15/+15
| | | | to where it's used.
* All: Remove inline JSHint settings.Scott González2013-04-221-1/+0
|
* Autocomplete: Insert the live region before the input. Fixes #9172 - ↵Scott González2013-03-211-1/+1
| | | | Autocomplete: .replaceWith() fails to replace.
* Autocomplete: Menu's input option is long gone, remove leftoversJörn Zaefferer2013-03-211-2/+0
|
* Widgets: Updating to use instance method on bridgeCorey Frang2013-03-191-1/+1
|
* Autocomplete: Set isNewMenu flag on every suggestion. Fixes #9118 - ↵Scott González2013-02-251-1/+3
| | | | Autocomplete: Mouse auto-highlights option in Firefox.
* Autocomplete: Use .ui-front instead of .zIndex() for the suggestions menu.Scott González2013-02-051-5/+2
|
* Autocomplete: Optimize element type checks for speed and size.Scott González2013-02-051-18/+15
|
* Update copyright year to 2013.Scott González2013-01-101-1/+1
|
* Autocomplete: Append to closest .ui-front if available.Scott González2012-12-141-4/+16
|
* Autocomplete: Handle detached elements for appendTo after create.Scott González2012-12-071-1/+1
|
* Allow higher cyclomatic complexity in functions that sanely use switch ↵Scott González2012-12-061-0/+1
| | | | statements.
* Autocomplete: When appendTo is a jQuery object or a DOM element, don't ↵Scott González2012-11-281-1/+9
| | | | search against the document. Fixes #8858 - Autocomplete: Fails when appendTo is detached from the DOM.
* Autocomplete: Whitespace.Scott González2012-11-191-1/+0
|
* Updated all widgets to use proper data keys when getting plugin instances.Scott González2012-11-091-1/+1
|
* Removed bgiframe.Scott González2012-10-261-4/+0
|
* Autocomplete: Removed data fallback for item.autocomplete. Fixes #8156 - ↵Scott González2012-10-251-6/+2
| | | | Autocomplete: Remove data fallbacks.
* Widget: Bind the remove event to the element, not the .widget() element.Scott González2012-10-241-1/+2
|
* 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
* Build: Upgrade to the latest Grunt and JSHint - Closes gh-786Mike Sherov2012-10-221-1/+1
|
* Updated docs URLS.Scott González2012-09-261-1/+1
|
* Menu: If the active element no longer exists after a refresh, blur the menu.Scott González2012-08-271-2/+0
|
* Autocomplete: Fixed an invisible character tht lead to a failure of the ↵Pierre-Henri Ausseil2012-08-261-1/+1
| | | | function.
* Simplify licensing.Scott González2012-08-091-1/+1
|
* Autocomplete: Fixed spacing.Scott González2012-07-301-2/+2
|
* Update copyright to jQuery Foundation.Scott González2012-07-041-1/+2
|
* Autocomplete: More verbose checking for multi-line to work around IE ↵Scott González2012-06-251-1/+15
| | | | treating inputs as contentEditable.
* Autocomplete: Check for contenteditable via isContentEditable property ↵Scott González2012-06-251-1/+1
| | | | rather than [contenteditable] selector. Properly accounts for properties vs. attributes and 'inherit'.
* Widget: Rename _bind() to _on(). Partial fix for #7795 - Widget: _on and _off.Scott González2012-06-131-3/+3
|
* Autocomplete: Remove left-over clearTimeout( this.closing ).Scott González2012-05-241-1/+0
|
* Autocomplete: We no longer need to remove aria attributes on destroy.Scott González2012-05-231-4/+1
|
* Autocomplete: Coding standards.Scott González2012-05-181-17/+16
|
* Autocomplete: Added check to prevent accidental focus of menu-item on page ↵kborchers2012-05-181-0/+16
| | | | load in Firefox. Fixed #7024 - Autocomplete menu options are activated even if mouse is not moved.
* Menu: Remove need to pass an event for next(), previous(), focus().Scott González2012-05-181-2/+2
|
* Autocomplete: Update live region if focus event is canceled. Remove live ↵Scott González2012-05-161-10/+20
| | | | region on destroy.
* Autocomplete: ARIA live region as extension, adding a messages option. Fixes ↵Jörn Zaefferer2012-05-161-8/+40
| | | | #7840 - Autocomplete: popup results not read by screen-readers
* Autocomplete: Fixed context for handling async focus in IE; makes change ↵Scott González2012-05-101-2/+2
| | | | event work properly in IE again.