From cd99d4bd7cd642ef9f5ee6cc2b72bef6067c3f7c Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Fri, 26 Aug 2011 01:09:36 +0200 Subject: [PATCH] We slice the board prefix along with the thread title now, so 25 -> 30 --- 4chan_x.user.js | 2 +- script.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index bc39c2c55..7b2c49e8e 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1887,7 +1887,7 @@ var props, watched, _name; props = { href: "/" + g.BOARD + "/res/" + id, - textContent: getTitle(thread).slice(0, 25) + textContent: getTitle(thread).slice(0, 30) }; watched = $.get('watched', {}); watched[_name = g.BOARD] || (watched[_name] = {}); diff --git a/script.coffee b/script.coffee index 2784b2692..b0e9e7377 100644 --- a/script.coffee +++ b/script.coffee @@ -1555,7 +1555,7 @@ watcher = watch: (thread, id) -> props = href: "/#{g.BOARD}/res/#{id}" - textContent: getTitle(thread)[...25] + textContent: getTitle(thread)[...30] watched = $.get 'watched', {} watched[g.BOARD] or= {}