- Limit the new domain search to 20 items.

This commit is contained in:
will 2011-03-15 16:21:32 -07:00
parent 057ddad997
commit 16e9e4ae51
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",
data: "command=listDomains&path=" + encodeURIComponent(request.term) +"&response=json&pagesize=20",
dataType: "json",
async: false,
success: function(json) {