aboutsummaryrefslogtreecommitdiffstats
path: root/view
diff options
context:
space:
mode:
authorredmatrix <redmatrix@redmatrix.me>2015-11-17 15:03:27 -0800
committerredmatrix <redmatrix@redmatrix.me>2015-11-17 15:03:27 -0800
commita06f7fbe2e78de428489d824c1329ef29c4d1f42 (patch)
treea9b7334066c0e6245ef3dce8e60d13cc34645dac /view
parent6df98f080ba0c9a0309158c1ea5d48f95aae71ee (diff)
downloadvolse-hubzilla-a06f7fbe2e78de428489d824c1329ef29c4d1f42.tar.gz
volse-hubzilla-a06f7fbe2e78de428489d824c1329ef29c4d1f42.tar.bz2
volse-hubzilla-a06f7fbe2e78de428489d824c1329ef29c4d1f42.zip
photo album widget permissions issue
Diffstat (limited to 'view')
-rw-r--r--view/js/acl.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index 847997de0..a0c1c6c02 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,100);
+ that.get(0,1000);
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, 100, srcstr);
+ that.get(0, 1000, srcstr);
};
ACL.prototype.on_search = function(event) {