From 6f301505e33c42a37fbc7159f3144f41922c7dc6 Mon Sep 17 00:00:00 2001 From: Pashe Date: Sun, 19 Oct 2014 21:30:59 -0500 Subject: [PATCH] thread-watcher.js: change display format --- js/thread-watcher.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/js/thread-watcher.js b/js/thread-watcher.js index 22656e48..52b8142e 100644 --- a/js/thread-watcher.js +++ b/js/thread-watcher.js @@ -28,10 +28,10 @@ watchlist.render = function(reset) { JSON.parse(localStorage.watchlist).forEach(function(e, i) { //look at line 69, that's what (e) is here. threads.push('
' + - 'Board: '+e[0]+' ' + - 'Thread: '+''+e[1]+' ' + - 'Replies: '+e[2]+' ' + - '[Unwatch]'+ + '/'+e[0]+'/ - ' + + ''+e[1].replace("thread_", "Thread #")+'' + + ' ('+e[2]+') ' + + 'X'+ '
'); }); if ($('#watchlist').length) {