mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Go to package when selecting a typeahead suggestion
Directly jump to the package details when selecting an entry from the drop-down list. Implements FS#34471. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
This commit is contained in:
parent
dbf1d474f7
commit
0d68494de7
1 changed files with 5 additions and 1 deletions
|
@ -118,7 +118,11 @@ $(document).ready(function() {
|
||||||
matcher: function(item) { return true; },
|
matcher: function(item) { return true; },
|
||||||
sorter: function(items) { return items; },
|
sorter: function(items) { return items; },
|
||||||
menu: '<ul class="pkgsearch-typeahead"></ul>',
|
menu: '<ul class="pkgsearch-typeahead"></ul>',
|
||||||
items: 20
|
items: 20,
|
||||||
|
updater: function(item) {
|
||||||
|
document.location = '/packages/' + item;
|
||||||
|
return item;
|
||||||
|
}
|
||||||
}).attr('autocomplete', 'off');
|
}).attr('autocomplete', 'off');
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue