tweak
This commit is contained in:
parent
92adcaf28a
commit
1b81a79105
@ -4630,7 +4630,7 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$.id('postcount').textContent = ++ThreadStats.posts;
|
$.id('postcount').textContent = ++ThreadStats.posts;
|
||||||
if (!post.img || post.hasPdf) {
|
if (!post.img) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
imgcount = $.id('imagecount');
|
imgcount = $.id('imagecount');
|
||||||
|
|||||||
@ -3796,7 +3796,7 @@ ThreadStats =
|
|||||||
node: (post) ->
|
node: (post) ->
|
||||||
return if post.isInlined
|
return if post.isInlined
|
||||||
$.id('postcount').textContent = ++ThreadStats.posts
|
$.id('postcount').textContent = ++ThreadStats.posts
|
||||||
return if (!post.img or post.hasPdf)
|
return unless post.img
|
||||||
imgcount = $.id 'imagecount'
|
imgcount = $.id 'imagecount'
|
||||||
imgcount.textContent = ++ThreadStats.images
|
imgcount.textContent = ++ThreadStats.images
|
||||||
if ThreadStats.images > ThreadStats.imgLimit
|
if ThreadStats.images > ThreadStats.imgLimit
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user