Преглед изворни кода

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

Torkel Ödegaard пре 11 година
родитељ
комит
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');