remove the labels entirely

This commit is contained in:
James Campos 2011-05-23 16:38:21 -07:00
parent b76b0d7aee
commit 684616d8ce
2 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -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