]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost-mobile/js/acl.js
Merge pull request #601 from fermionic/20130204-100-percent-CPU-usage-on-xmlify
[friendica.git] / view / theme / frost-mobile / js / acl.js
index 65b2d3829816f494743f2bdda54da7ce48dfff64..d54df12a35eb57f50787b52a86599115939a06b9 100644 (file)
@@ -253,6 +253,10 @@ ACL.prototype.populate = function(data){
                //console.log(html);
                that.list_content.append(html);
        });
+       $j(".acl-list-item img[data-src]", that.list_content).each(function(i, el){
+               // Add src attribute for images with a data-src attribute
+               $j(el).attr('src', $j(el).data("src"));
+       });
        that.update_view();
 }