From 6c71754e515bd723e6ed27b8ac7a12b0da3d4192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Sat, 6 Sep 2014 10:12:28 +0200 Subject: [PATCH] Changed template variable typeahead/autocomplete list limit from 10 to 1000, Fixes #767, Fixes #768 --- src/app/directives/templateParamSelector.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/directives/templateParamSelector.js b/src/app/directives/templateParamSelector.js index 545e2e89661..194dfbdcb40 100644 --- a/src/app/directives/templateParamSelector.js +++ b/src/app/directives/templateParamSelector.js @@ -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');