From f73c82632f213ac7971b54220b4a0c87d354ca1e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 10 Dec 2015 19:18:55 -0800 Subject: some minor cleanup - change the default of the discover tab (public stream access) --- view/js/acl.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'view/js/acl.js') diff --git a/view/js/acl.js b/view/js/acl.js index ed8af478a..6d94b4987 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -39,18 +39,18 @@ function ACL(backend_url, preset) { // no longer called only on submit - call to update whenever a change occurs to the acl list. ACL.prototype.on_submit = function() { - aclfileds = $("#acl-fields").html(""); + aclfields = $("#acl-fields").html(""); $(that.allow_gid).each(function(i,v) { - aclfileds.append(""); + aclfields.append(""); }); $(that.allow_cid).each(function(i,v) { - aclfileds.append(""); + aclfields.append(""); }); $(that.deny_gid).each(function(i,v) { - aclfileds.append(""); + aclfields.append(""); }); $(that.deny_cid).each(function(i,v) { - aclfileds.append(""); + aclfields.append(""); }); //areYouSure jquery plugin: recheck the form here -- cgit v1.2.3