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:
Joris Steyn 2014-01-02 00:41:34 +01:00 committed by Lukas Fleischer
parent dbf1d474f7
commit 0d68494de7

View file

@ -118,7 +118,11 @@ $(document).ready(function() {
matcher: function(item) { return true; },
sorter: function(items) { return items; },
menu: '<ul class="pkgsearch-typeahead"></ul>',
items: 20
items: 20,
updater: function(item) {
document.location = '/packages/' + item;
return item;
}
}).attr('autocomplete', 'off');
});
</script>