diff options
Diffstat (limited to 'ui/jquery.ui.autocomplete.js')
-rw-r--r-- | ui/jquery.ui.autocomplete.js | 6 |
1 files changed, 3 insertions, 3 deletions
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 { |