- Limit the new domain search to 20 items.

This commit is contained in:
will 2011-03-15 16:33:10 -07:00
parent 16e9e4ae51
commit d764ee92e1
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ function applyAutoCompleteToDomainField($field) {
$field.autocomplete({
source: function(request, response) {
$.ajax({
data: "command=listDomains&path=" + encodeURIComponent(request.term) +"&response=json&pagesize=20",
data: "command=listDomains&path=" + encodeURIComponent(request.term) +"&response=json&pagesize=10",
dataType: "json",
async: false,
success: function(json) {