]> git.mxchange.org Git - friendica.git/blobdiff - js/acl.js
In the acl there is now a separation between groups, forums and contacts
[friendica.git] / js / acl.js
index 054f5096026f96b222bcd9134807b1e8d0d67650..ac0bb3c7ef6e19696609442bf4846f0eb0e1feb5 100644 (file)
--- a/js/acl.js
+++ b/js/acl.js
@@ -286,11 +286,16 @@ ACL.prototype.populate = function(data){
        var height = Math.ceil(data.tot / this.nw) * 42;
        this.list_content.height(height);
        this.data = {};
-       $(data.items).each(function(index, item){
-               html = "<div class='acl-list-item {4} {5} type{2}' title='{6}' id='{2}{3}'>"+this.item_tpl+"</div>";
-               html = html.format(item.photo, item.name, item.type, item.id, (item.forum=='1'?'forum':''), item.network, item.link);
-               if (item.uids!=undefined) this.group_uids[item.id] = item.uids;
-
+       $(data.items).each(function(index, item) {
+               if (item.separator != undefined) {
+                       html = "<hr class='clear'>";
+               } else {
+                       html = "<div class='acl-list-item {4} {5} type{2}' title='{6}' id='{2}{3}'>"+this.item_tpl+"</div>";
+                       html = html.format(item.photo, item.name, item.type, item.id, (item.forum=='1'?'forum':''), item.network, item.link);
+                       if (item.uids != undefined) {
+                               this.group_uids[item.id] = item.uids;
+                       }
+               }
                this.list_content.append(html);
                this.data[item.id] = item;
        }.bind(this));