From 684616d8cea08a10104459b3c4edffbe21e77bb6 Mon Sep 17 00:00:00 2001 From: James Campos Date: Mon, 23 May 2011 16:38:21 -0700 Subject: [PATCH] remove the labels entirely --- 4chan_x.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.js b/4chan_x.js index 1d3ace278..686ae8f8c 100644 --- a/4chan_x.js +++ b/4chan_x.js @@ -1973,7 +1973,7 @@ var dialog, html; threadStats.posts = 1; threadStats.images = $('.op img[md5]') ? 1 : 0; - html = "
Posts: " + threadStats.posts + " Images: " + threadStats.images + "
"; + html = "
" + threadStats.posts + " / " + threadStats.images + "
"; dialog = ui.dialog('stats', { bottom: '0px', left: '0px' diff --git a/script.coffee b/script.coffee index 5e144929a..4665f075b 100644 --- a/script.coffee +++ b/script.coffee @@ -1549,7 +1549,7 @@ threadStats = init: -> threadStats.posts = 1 threadStats.images = if $ '.op img[md5]' then 1 else 0 - html = "
Posts: #{threadStats.posts} Images: #{threadStats.images}
" + html = "
#{threadStats.posts} / #{threadStats.images}
" dialog = ui.dialog 'stats', bottom: '0px', left: '0px', html dialog.className = 'dialog' $.append d.body, dialog