diff options
author | friendica <info@friendica.com> | 2013-12-10 01:16:02 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-10 01:16:02 -0800 |
commit | a94a7e0daf1e7df349ebb81532764c5541e10dd6 (patch) | |
tree | be13e64bbbd8e1274c7784ebc33279f2f13f2b4f /js/main.js | |
parent | 65e4fa3dcba55659b6fb38d5d212a5a2bda68099 (diff) | |
parent | 1bc7cac4f542c68e16f6159e26603555706d4121 (diff) | |
download | volse-hubzilla-a94a7e0daf1e7df349ebb81532764c5541e10dd6.tar.gz volse-hubzilla-a94a7e0daf1e7df349ebb81532764c5541e10dd6.tar.bz2 volse-hubzilla-a94a7e0daf1e7df349ebb81532764c5541e10dd6.zip |
Merge pull request #235 from zzottel/master
When counting not yet loaded images, count all in .wall-item-body.
Diffstat (limited to 'js/main.js')
-rw-r--r-- | js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/main.js b/js/main.js index ba36861b2..70d11bfd3 100644 --- a/js/main.js +++ b/js/main.js @@ -527,7 +527,7 @@ function updateConvItems(mode,data) { /* autocomplete @nicknames */ $(".comment-edit-form textarea").contact_autocomplete(baseurl+"/acl"); - var bimgs = $(".wall-item-body > img").not(function() { return this.complete; }); + var bimgs = $(".wall-item-body img").not(function() { return this.complete; }); var bimgcount = bimgs.length; if (bimgcount) { |