From cf9ae43f9d80b02ba78d1accdee98b2fa5ed85a1 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 2 Jun 2011 00:48:29 +0200 Subject: [PATCH] will refresh on page 0. Close #166 --- 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 8ccc92849..65572e4ae 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -743,7 +743,7 @@ thread = nav.getThread(); switch (keybinds.key) { case '0': - return window.location = "/" + g.BOARD + "/#0"; + return window.location = "/" + g.BOARD + "/0#0"; case 'I': return keybinds.qr(thread); case 'J': diff --git a/script.coffee b/script.coffee index df86712a6..92058c6ff 100644 --- a/script.coffee +++ b/script.coffee @@ -536,7 +536,7 @@ keybinds = thread = nav.getThread() switch keybinds.key when '0' - window.location = "/#{g.BOARD}/#0" + window.location = "/#{g.BOARD}/0#0" when 'I' keybinds.qr thread when 'J'