diff options
Diffstat (limited to 'view/js/acl.js')
-rw-r--r-- | view/js/acl.js | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/view/js/acl.js b/view/js/acl.js index e016158e9..c8f7c7180 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -173,6 +173,8 @@ ACL.prototype.on_custom = function(event) { that.deny_cid = []; that.deny_gid = []; + datasrc2src('#acl-list-content .acl-list-item img[data-src]'); + that.update_view('custom'); that.on_submit(); @@ -408,10 +410,4 @@ ACL.prototype.populate = function(data) { } that.list_content.append(html); }); - - $("#acl-list-content .acl-list-item img[data-src]").each(function(i, el) { - // Replace data-src attribute with src attribute for every image - $(el).attr('src', $(el).data("src")); - $(el).removeAttr("data-src"); - }); }; |