]> git.mxchange.org Git - friendica.git/blobdiff - view/theme/frost/js/acl.js
Merge pull request #593 from fermionic/20130127-tinymce-update-and-fixes
[friendica.git] / view / theme / frost / js / acl.js
index 9675588af238a57d6cd65220425c49a0420072ac..511f84f784145619c7265e5f5d63d36f8a652b23 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();
 }