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;', '
Quick Reply - x + x
-
+
+
@@ -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