remove the labels entirely
This commit is contained in:
parent
b76b0d7aee
commit
684616d8ce
@ -1973,7 +1973,7 @@
|
||||
var dialog, html;
|
||||
threadStats.posts = 1;
|
||||
threadStats.images = $('.op img[md5]') ? 1 : 0;
|
||||
html = "<div class=move>Posts: <span id=rcount>" + threadStats.posts + "</span> Images: <span id=icount>" + threadStats.images + "</span></div>";
|
||||
html = "<div class=move><span id=rcount>" + threadStats.posts + "</span> / <span id=icount>" + threadStats.images + "</span></div>";
|
||||
dialog = ui.dialog('stats', {
|
||||
bottom: '0px',
|
||||
left: '0px'
|
||||
|
||||
@ -1549,7 +1549,7 @@ threadStats =
|
||||
init: ->
|
||||
threadStats.posts = 1
|
||||
threadStats.images = if $ '.op img[md5]' then 1 else 0
|
||||
html = "<div class=move>Posts: <span id=rcount>#{threadStats.posts}</span> Images: <span id=icount>#{threadStats.images}</span></div>"
|
||||
html = "<div class=move><span id=rcount>#{threadStats.posts}</span> / <span id=icount>#{threadStats.images}</span></div>"
|
||||
dialog = ui.dialog 'stats', bottom: '0px', left: '0px', html
|
||||
dialog.className = 'dialog'
|
||||
$.append d.body, dialog
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user