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