Change QR buttons' text to match 4chan's mobile buttons.

This commit is contained in:
Nicolas Stepien 2012-05-31 11:14:05 +02:00
parent 6fc67e9b27
commit e8c269c5df
2 changed files with 2 additions and 2 deletions

View File

@ -1394,7 +1394,7 @@
var link;
if (Conf['Hide Original Post Form']) {
link = $.el('h1', {
innerHTML: "<a href=javascript:;>" + (g.REPLY ? 'Quick Reply' : 'New Thread') + "</a>"
innerHTML: "<a href=javascript:;>" + (g.REPLY ? 'Reply to Thread' : 'Start a Thread') + "</a>"
});
$.on(link.firstChild, 'click', function() {
QR.open();

View File

@ -1025,7 +1025,7 @@ QR =
asyncInit: ->
if Conf['Hide Original Post Form']
link = $.el 'h1', innerHTML: "<a href=javascript:;>#{if g.REPLY then 'Quick Reply' else 'New Thread'}</a>"
link = $.el 'h1', innerHTML: "<a href=javascript:;>#{if g.REPLY then 'Reply to Thread' else 'Start a Thread'}</a>"
$.on link.firstChild, 'click', ->
QR.open()
$('select', QR.el).value = 'new' unless g.REPLY