[FIX] ignore separators when moving in autocomplet

This commit is contained in:
Géry Debongnie 2014-06-27 13:57:33 +02:00
parent 18da121ae2
commit e556fd735e
1 changed files with 2 additions and 2 deletions

View File

@ -2493,10 +2493,10 @@ instance.web.search.AutoComplete = instance.web.Widget.extend({
move: function (direction) {
var $next;
if (direction === 'down') {
$next = this.$('li.oe-selection-focus').next();
$next = this.$('li.oe-selection-focus').nextAll(':not(.oe-separator)').first();
if (!$next.length) $next = this.$('li:first-child');
} else {
$next = this.$('li.oe-selection-focus').prev();
$next = this.$('li.oe-selection-focus').prevAll(':not(.oe-separator)').first();
if (!$next.length) $next = this.$('li:last-child');
}
this.focus_element($next);