From: friendica Date: Thu, 22 Dec 2011 02:04:24 +0000 (-0800) Subject: better handling of the display of conflicting group permissions X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e764990ce49880ba6d5113410eab86ff44bb6647;p=friendica.git better handling of the display of conflicting group permissions --- diff --git a/js/acl.js b/js/acl.js index bd9f71082e..e383224ca8 100644 --- a/js/acl.js +++ b/js/acl.js @@ -200,8 +200,14 @@ ACL.prototype.update_view = function(){ $(that.group_uids[id]).each(function(i,v) { if(uclass == "grouphide") $("#c"+v).removeClass("groupshow"); - if(uclass != "") - $("#c"+v).addClass(uclass); + if(uclass != "") { + var cls = $("#c"+v).attr('class'); + if( cls == undefined) + return true; + var hiding = cls.indexOf('grouphide'); + if(hiding == -1) + $("#c"+v).addClass(uclass); + } }); break;