aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/acl.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-05-25 14:31:58 +0200
committerMario Vavti <mario@mariovavti.com>2016-05-25 14:31:58 +0200
commit9908a7193ae9ef79536540693e505a9c2d813425 (patch)
tree9ab5b664d920353dae4496ee0035f5cf9349f855 /view/js/acl.js
parentc37eaff26331c49a2c8754f6d49c6145863f47ca (diff)
downloadvolse-hubzilla-9908a7193ae9ef79536540693e505a9c2d813425.tar.gz
volse-hubzilla-9908a7193ae9ef79536540693e505a9c2d813425.tar.bz2
volse-hubzilla-9908a7193ae9ef79536540693e505a9c2d813425.zip
remove the add others button for now - after some research it turned out not beeing so useful
Diffstat (limited to 'view/js/acl.js')
-rw-r--r--view/js/acl.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index 92a80e3d1..79699c589 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -20,7 +20,6 @@ function ACL(backend_url, preset) {
that.onlyme = $("#acl-onlyme");
that.showlimited = $("#acl-showlimited");
that.acl_select = $("#acl-select");
- that.showacl = $("#show-acl");
that.preset = preset;
that.self = [];
@@ -250,7 +249,6 @@ ACL.prototype.update_view = function(value) {
if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0) {
that.list.hide(); //hide acl-list
- that.showacl.hide(); //hide showacl button
that.info.show(); //show acl-info
that.update_select('public');
@@ -263,7 +261,6 @@ ACL.prototype.update_view = function(value) {
// if value != 'onlyme' we should fall through this one
else if (that.allow_gid.length === 0 && that.allow_cid.length === 1 && that.allow_cid[0] === that.self[0] && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'onlyme') {
that.list.hide(); //hide acl-list if
- that.showacl.show(); //show showacl button
that.info.hide(); //show acl-info
that.update_select('onlyme');
@@ -274,7 +271,6 @@ ACL.prototype.update_view = function(value) {
else {
that.list.show(); //show acl-list
- that.showacl.hide(); //hide showacl button
that.info.hide(); //hide acl-info
that.update_select('limited');