Procházet zdrojové kódy

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

Torkel Ödegaard před 11 roky
rodič
revize
6c71754e51
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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');