From e8c269c5dff6cb58d027c32e0ff19de2835df048 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 31 May 2012 11:14:05 +0200 Subject: [PATCH] Change QR buttons' text to match 4chan's mobile buttons. --- 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 ed0fcbb07..9cace7321 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1394,7 +1394,7 @@ var link; if (Conf['Hide Original Post Form']) { link = $.el('h1', { - innerHTML: "" + (g.REPLY ? 'Quick Reply' : 'New Thread') + "" + innerHTML: "" + (g.REPLY ? 'Reply to Thread' : 'Start a Thread') + "" }); $.on(link.firstChild, 'click', function() { QR.open(); diff --git a/script.coffee b/script.coffee index 388f6c4cc..372f9f1a0 100644 --- a/script.coffee +++ b/script.coffee @@ -1025,7 +1025,7 @@ QR = asyncInit: -> if Conf['Hide Original Post Form'] - link = $.el 'h1', innerHTML: "#{if g.REPLY then 'Quick Reply' else 'New Thread'}" + link = $.el 'h1', innerHTML: "#{if g.REPLY then 'Reply to Thread' else 'Start a Thread'}" $.on link.firstChild, 'click', -> QR.open() $('select', QR.el).value = 'new' unless g.REPLY