Commit 6c71754e by Torkel Ödegaard

Changed template variable typeahead/autocomplete list limit from 10 to 1000, Fixes #767, Fixes #768

parent e729b373
......@@ -38,7 +38,7 @@ function (angular, app, _, $) {
$input.attr('data-provide', 'typeahead');
$input.typeahead({
minLength: 0,
items: 10,
items: 1000,
updater: function(value) {
$input.val(value);
$input.trigger('blur');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment