aboutsummaryrefslogtreecommitdiffstats
path: root/view/js
diff options
context:
space:
mode:
authorAndrew Manning <andrew@reticu.li>2016-03-23 21:17:23 -0400
committerAndrew Manning <andrew@reticu.li>2016-03-23 21:17:23 -0400
commit59827b6dfdcab85b65853f3ee75365bda057a993 (patch)
treedc1871d3cba25d9064192d206bf24b16780621ab /view/js
parent61bef7d4b083c9c794469137798176b62c2f21cb (diff)
parentf200dd4395e1d0e2a6200844ec4827a943bf09ea (diff)
downloadvolse-hubzilla-59827b6dfdcab85b65853f3ee75365bda057a993.tar.gz
volse-hubzilla-59827b6dfdcab85b65853f3ee75365bda057a993.tar.bz2
volse-hubzilla-59827b6dfdcab85b65853f3ee75365bda057a993.zip
Merge branch 'master' of https://github.com/redmatrix/hubzilla into contextual-help
Diffstat (limited to 'view/js')
-rw-r--r--view/js/acl.js24
1 files changed, 15 insertions, 9 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index 6d94b4987..65f1009ed 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -121,8 +121,10 @@ ACL.prototype.on_button_show = function(event) {
event.stopImmediatePropagation();
event.stopPropagation();
- that.set_allow($(this).parent().attr('id'));
- that.on_submit();
+ if(!$(this).parent().hasClass("grouphide")) {
+ that.set_allow($(this).parent().attr('id'));
+ that.on_submit();
+ }
return false;
};
@@ -231,25 +233,29 @@ ACL.prototype.update_view = function() {
}
$(that.group_uids[id]).each(function(i, v) {
if(uclass == "grouphide")
- $("#c"+v).removeClass("groupshow");
+ // we need attr selection here because the id can include an @ (diaspora/friendica xchans)
+ $('[id="c' + v + '"]').removeClass("groupshow");
if(uclass !== "") {
- var cls = $("#c"+v).attr('class');
+ var cls = $('[id="c' + v + '"]').attr('class');
if( cls === undefined)
return true;
var hiding = cls.indexOf('grouphide');
if(hiding == -1)
- $("#c"+v).addClass(uclass);
+ $('[id="c' + v + '"]').addClass(uclass);
}
});
break;
case "c":
if (that.allow_cid.indexOf(id)>=0){
- btshow.removeClass("btn-default").addClass("btn-success");
- bthide.removeClass("btn-danger").addClass("btn-default");
+ if(!$(this).hasClass("grouphide") ) {
+ btshow.removeClass("btn-default").addClass("btn-success");
+ bthide.removeClass("btn-danger").addClass("btn-default");
+ }
}
if (that.deny_cid.indexOf(id)>=0){
btshow.removeClass("btn-success").addClass("btn-default");
bthide.removeClass("btn-default").addClass("btn-danger");
+ $(this).removeClass("groupshow");
}
}
});
@@ -277,7 +283,7 @@ ACL.prototype.populate = function(data) {
$(data.items).each(function(){
html = "<div class='acl-list-item {4} {7} {5}' title='{6}' id='{2}{3}'>"+that.item_tpl+"</div>";
html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable);
- if (this.uids !== undefined) that.group_uids[this.id] = this.uids;
+ if (this.uids !== undefined) that.group_uids[this.xid] = this.uids;
//console.log(html);
that.list_content.append(html);
});
@@ -287,4 +293,4 @@ ACL.prototype.populate = function(data) {
$(el).removeAttr("data-src");
});
that.update_view();
-}; \ No newline at end of file
+};