From 028b30d3f0b457ed420bcca1be138946e6e82c43 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Thu, 2 Feb 2012 20:25:43 +0100 Subject: [PATCH] Fix #147 --- 4chan_x.user.js | 7 ++++--- script.coffee | 8 +++++--- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/4chan_x.user.js b/4chan_x.user.js index 2bc4a77b4..9e8824081 100644 --- a/4chan_x.user.js +++ b/4chan_x.user.js @@ -1575,11 +1575,11 @@ qr.el = ui.dialog('qr', 'top:0;right:0;', '\
\ Quick Reply \ - x\ + x\
\
\
\ - \ +
\
\
\
\ @@ -1612,7 +1612,8 @@ threads += ""; } $.prepend($('.move > span', qr.el), $.el('select', { - innerHTML: threads + innerHTML: threads, + title: 'Create a new thread / Reply to a thread' })); $.on($('select', qr.el), 'mousedown', function(e) { return e.stopPropagation(); diff --git a/script.coffee b/script.coffee index 24ff8362f..bbd8424b6 100644 --- a/script.coffee +++ b/script.coffee @@ -1159,11 +1159,11 @@ qr = qr.el = ui.dialog 'qr', 'top:0;right:0;', '
- +
@@ -1195,7 +1195,9 @@ qr = threads = '' for thread in $$ '.op' threads += "" - $.prepend $('.move > span', qr.el), $.el 'select', innerHTML: threads + $.prepend $('.move > span', qr.el), $.el 'select' + innerHTML: threads + title: 'Create a new thread / Reply to a thread' $.on $('select', qr.el), 'mousedown', (e) -> e.stopPropagation() $.on $('#autohide', qr.el), 'change', qr.toggleHide $.on $('.close', qr.el), 'click', qr.close