diff options
author | zottel <github@zottel.net> | 2013-12-10 09:14:27 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2013-12-10 09:14:27 +0100 |
commit | 1bc7cac4f542c68e16f6159e26603555706d4121 (patch) | |
tree | 1f0a6c0ce8ae01315b30bf09dd755ea36363f4c4 /js/main.js | |
parent | ed9f10872240231125007cf32b95007281558cac (diff) | |
download | volse-hubzilla-1bc7cac4f542c68e16f6159e26603555706d4121.tar.gz volse-hubzilla-1bc7cac4f542c68e16f6159e26603555706d4121.tar.bz2 volse-hubzilla-1bc7cac4f542c68e16f6159e26603555706d4121.zip |
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) { |