diff options
author | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-18 06:48:29 +0100 |
---|---|---|
committer | Haakon Meland Eriksen <haakon.eriksen@far.no> | 2015-11-18 06:48:29 +0100 |
commit | 0d232c612b71ba28dba234415185ecfb45a80695 (patch) | |
tree | 5594cbe27017dd5b640eb9282f816ac6b7066d13 /view/js | |
parent | 545dc5cf65fef823a9ca8a5bcde6e346d4503d4c (diff) | |
parent | 68da4d90dcbda1240ae014768a66a164fd5d2b36 (diff) | |
download | volse-hubzilla-0d232c612b71ba28dba234415185ecfb45a80695.tar.gz volse-hubzilla-0d232c612b71ba28dba234415185ecfb45a80695.tar.bz2 volse-hubzilla-0d232c612b71ba28dba234415185ecfb45a80695.zip |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'view/js')
-rw-r--r-- | view/js/acl.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index a0c1c6c02..ed8af478a 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -31,7 +31,7 @@ function ACL(backend_url, preset) { $("#acl-search").keypress(that.on_search); /* startup! */ - that.get(0,1000); + that.get(0,15000); that.on_submit(); }); } @@ -60,7 +60,7 @@ ACL.prototype.on_submit = function() { ACL.prototype.search = function() { var srcstr = $("#acl-search").val(); that.list_content.html(""); - that.get(0, 1000, srcstr); + that.get(0, 15000, srcstr); }; ACL.prototype.on_search = function(event) { |