Просмотр исходного кода

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

Torkel Ödegaard 11 лет назад
Родитель
Сommit
6c71754e51
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/app/directives/templateParamSelector.js

+ 1 - 1
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');