From 22ba931c395aa8859c0cc7a2cf08e7bb0027db78 Mon Sep 17 00:00:00 2001 From: Scott González Date: Sat, 20 Mar 2010 14:37:25 -0400 Subject: Menu: skip over elements that aren't menu items. Fixes #5188 - Refactor menu rendering for more customizing. --- ui/jquery.ui.autocomplete.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ui') diff --git a/ui/jquery.ui.autocomplete.js b/ui/jquery.ui.autocomplete.js index f9fa50380..c5b78a6e3 100644 --- a/ui/jquery.ui.autocomplete.js +++ b/ui/jquery.ui.autocomplete.js @@ -391,11 +391,11 @@ $.widget("ui.menu", { }, next: function(event) { - this.move("next", "li:first", event); + this.move("next", ".ui-menu-item:first", event); }, previous: function(event) { - this.move("prev", "li:last", event); + this.move("prev", ".ui-menu-item:last", event); }, first: function() { @@ -411,7 +411,7 @@ $.widget("ui.menu", { this.activate(event, this.element.children(edge)); return; } - var next = this.active[direction](); + var next = this.active[direction + "All"](".ui-menu-item").eq(0); if (next.length) { this.activate(event, next); } else { -- cgit v1.2.3