aboutsummaryrefslogtreecommitdiffstats
path: root/ui/jquery.ui.menu.js
Commit message (Collapse)AuthorAgeFilesLines
* Menu: Refactor to get rid of var that. Cleanup some odd formattings and ↵Jörn Zaefferer2011-09-131-21/+19
| | | | unneeded temp vars
* Merge remote branch 'kborchers/menu_autoCollapse'Jörn Zaefferer2011-09-121-16/+29
|\
| * Menu: Added autoCollapse as the default and added a unit testkborchers2011-09-121-16/+29
| |
* | Menu: Get rid of `var self`, replacing with `that` or calls to _delayJörn Zaefferer2011-09-121-47/+41
| |
* | Menu: Replace regular bind call with _bindJörn Zaefferer2011-09-121-94/+94
|/
* WhitespaceJörn Zaefferer2011-07-281-1/+1
|
* Widget delegation: Put back the simple click event handler where it was.Jörn Zaefferer2011-07-281-5/+7
|
* Widget delegation: Further simplify menu code, blur handler also doesn't do ↵Jörn Zaefferer2011-07-281-3/+1
| | | | anything
* Widget delegation: Further simplify menu codeJörn Zaefferer2011-07-281-3/+1
|
* Widget delegation: Update menu to use _bind with delegation. Clean up test.Jörn Zaefferer2011-07-281-45/+32
|
* Menu: Added focusing first menu item when menu receives focus and ↵kborchers2011-07-261-0/+12
| | | | collapseAll when menu loses focus (blur).
* Merge remote branch 'kborchers/menu_home_end'Jörn Zaefferer2011-07-251-19/+42
|\
| * Menu: Added Home moves to first item and End moves to last item in currently ↵kborchers2011-07-251-19/+42
| | | | | | | | active menu or submenu. Also fixed PageUp and PageDown so that they don't wrap back around to other end of menu. Also fixed scrolling to use activeMenu rather than element to all. Also added unit tests for keyboard nav
* | Merge branch 'master' into core-1.6.1Scott González2011-07-251-116/+171
|\| | | | | | | | | | | | | | | | | Conflicts: demos/menubar/default.html tests/unit/autocomplete/autocomplete.html tests/visual/effects/effects.all.html ui/jquery.ui.menu.js ui/jquery.ui.popup.js
| * Menu: Passed the original event that causes a blur through collapseAll to ↵kborchers2011-07-191-5/+7
| | | | | | | | blur, then trigger a blur on the menu. Fixes failing unit test provided by @rwaldron which has been included in this commit
| * Menu: Changed closeAll to collapseAll and updated in Menubar, also updated a ↵kborchers2011-07-141-4/+4
| | | | | | | | reference to left in Menubar to collapse.
| * Menu: Fix formatting and whitespace (was supposed to update previous commit)Jörn Zaefferer2011-07-141-4/+7
| |
| * Menu: Check if submenu is already open and if so, don't call open again. ↵kborchers2011-07-141-0/+4
| | | | | | | | Fixes Firefox bug where a mouseover of an icon adjusted the position of a submenu by a half pixel
| * Menu: Remove the ui-state-active class from the siblings of the newly ↵kborchers2011-07-131-0/+2
| | | | | | | | activated menu item without a delay to fix a bug where mouseover of a menu item directly adjacent to the active item would cause a 1 pixel jump due to both items having a class with a border (ui-state-active and ui-state-focus)
| * Menu: Added close on click outside using technique from popupkborchers2011-07-121-0/+8
| |
| * Menu: Changed left and right methods to collapse and expand respectively.kborchers2011-07-051-6/+6
| |
| * menu: Second pass style guidancegnarf2011-06-101-70/+98
| |
| * menu: Partial Style Guidance - Fixing JSLint Warningsgnarf2011-06-101-45/+54
| |
* | Use .attr() for boolean ARIA attributes.Scott González2011-07-121-12/+12
| |
* | .attr() -> .prop()Scott González2011-06-081-14/+14
|/
* All: Moved version numbers into prototypes. Fixed #7436 - Widget: Store ↵Scott González2011-05-281-2/+1
| | | | version numbers on instances.
* Merge branch 'master' of github.com:jquery/jquery-uiJörn Zaefferer2011-05-111-6/+7
|\
| * Menu: Fixed variable name.Scott González2011-05-111-2/+2
| |
| * Menu: Use appropriate methods for getting scroll values for .prop()/.attr() ↵Scott González2011-05-111-4/+5
| | | | | | | | compat. Fixes #7354 - Autocomplete: Scrollable results don't visually update with jQuery 1.6.
* | Menu: Remove default preventDefault. Add more meaningful href's on menuJörn Zaefferer2011-05-111-2/+0
| | | | | | | | | | and menubar demos. Change doesn't seem to affect autocomplete as that doesn't use href-attributes anyway.
* | Autocomplete: Revert fix for #7024, broke regular menu selection.Jörn Zaefferer2011-05-111-3/+1
|/ | | | Disabled test for now (need to reopen ticket).
* Autocomplete: Added check to determine if menu has just been created to ↵kborchers2011-05-091-1/+3
| | | | override mouseover event and reset that variable from autocomplete on close. Fixed #7024 - Autocomplete menu options are activated even if mouse is not moved
* Menu: Restore _destroy - remove tabIndex (gets added), don't remove IDJörn Zaefferer2011-05-031-1/+1
| | | | | (can get generated, but removing only generated ideas hopefully isn't necessary). May have to fix that later.
* Merge branch 'master' into menubarJörn Zaefferer2011-04-261-4/+9
|\ | | | | | | | | Conflicts: ui/jquery.ui.menu.js
| * Menu: Add ui-state-active to parent item when submenu item receives focus.jzaefferer2011-04-231-2/+3
| |
| * Menu: Add icons supportjzaefferer2011-04-201-1/+4
| |
| * Menu: Make keyboard focus matching take submenus into accountjzaefferer2011-04-201-2/+2
| |
* | Fix collapsing submenus issueHans Hillen2011-04-221-3/+1
| |
* | Prevent branch menuitems from firing select eventHans Hillen2011-04-221-2/+9
| |
* | Fix "menubar does not collapse when clicking on other menubar" + minor changesHans Hillen2011-04-181-0/+1
| |
* | ARIA & Focus changes to menu, specifically to how aria-activedescendant is ↵Hans Hillen2011-04-151-30/+43
|/ | | | handled
* Menu: Close submenu on ESCAPE keypressjzaefferer2011-03-171-0/+6
|
* Menu: Implement delaying of opening and closing submenusjzaefferer2011-03-171-4/+18
|
* Menu: Handle clicking on a menu item without hovering it first. Fixes #7085 ↵Scott González2011-03-151-2/+7
| | | | - Menu click when no mouseover causes error.
* Menu: Cleanupjzaefferer2011-02-281-3/+0
|
* Menu: Move addClass(active) call to _open to make it work for both mousejzaefferer2011-02-281-1/+2
| | | | and keyboard interactions
* Removed active state when menu closesmaggiewachs2011-02-241-1/+3
|
* Added active state toggle to items with submenus to provide "breadcrumb" ↵maggiewachs2011-02-241-4/+7
| | | | feedback
* Menu: Integrated flyoutmenu into menu, and moved flyoutmenu.htmljzaefferer2011-02-241-15/+88
| | | | testmenu into contextmenu.html
* Menu: Update autocomplete to use deactivate and check for focus classjzaefferer2011-02-241-1/+18
|