aboutsummaryrefslogtreecommitdiffstats
path: root/view/js/acl.js
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-02-26 15:09:46 +0100
committerMario Vavti <mario@mariovavti.com>2018-02-26 15:09:46 +0100
commitee5fd8a0bddde6aab6ce63c2ee48350999d7070d (patch)
tree98dfef9b1a768d6abcb1ecddf3448029f92dc40e /view/js/acl.js
parent032cbca6511cd0e0bbd5d6a41993a7a3734efc37 (diff)
downloadvolse-hubzilla-ee5fd8a0bddde6aab6ce63c2ee48350999d7070d.tar.gz
volse-hubzilla-ee5fd8a0bddde6aab6ce63c2ee48350999d7070d.tar.bz2
volse-hubzilla-ee5fd8a0bddde6aab6ce63c2ee48350999d7070d.zip
fix minor issue with custom acl selector
Diffstat (limited to 'view/js/acl.js')
-rw-r--r--view/js/acl.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/acl.js b/view/js/acl.js
index e3183e8ca..a5fae19bc 100644
--- a/view/js/acl.js
+++ b/view/js/acl.js
@@ -399,7 +399,7 @@ ACL.prototype.get = function(start, count, search) {
ACL.prototype.populate = function(data) {
$(data.items).each(function(){
- html = "<div class='list-group-item clearfix {4} {7} {5}' id='{2}{3}'>"+that.item_tpl+"</div>";
+ html = "<div class='list-group-item clearfix acl-list-item {4} {7} {5}' 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.xid] = this.uids;