Fix quoting not selecting the thread to reply to.

This commit is contained in:
Nicolas Stepien 2013-02-25 03:03:46 +01:00
parent f1359a75fb
commit abfdd2cb2b
3 changed files with 10 additions and 10 deletions

File diff suppressed because one or more lines are too long

View File

@ -449,7 +449,7 @@ a[href="javascript:;"] {
#qr.autohide:not(:hover) > form { #qr.autohide:not(:hover) > form {
display: none; display: none;
} }
#autohide, #qr select, #dump-button, .remove, .captchaimg { #autohide, #qr select, #dump-button, .remove, .captcha-img {
cursor: pointer; cursor: pointer;
} }
#qr > div { #qr > div {
@ -623,12 +623,12 @@ a[href="javascript:;"] {
#charCount.warning { #charCount.warning {
color: red; color: red;
} }
.captchaimg { .captcha-img {
background: #FFF; background: #FFF;
outline: 1px solid #CCC; outline: 1px solid #CCC;
outline-offset: -1px; outline-offset: -1px;
} }
.captchaimg > img { .captcha-img > img {
display: block; display: block;
height: 57px; height: 57px;
width: 300px; width: 300px;

View File

@ -254,8 +254,8 @@ QR =
QR.open() QR.open()
ta = QR.nodes.com ta = QR.nodes.com
if QR.threadSelector and !ta.value and g.BOARD.ID isnt 'f' if QR.nodes.thread and !ta.value
QR.threadSelector.value = OP.ID QR.nodes.thread.value = OP.ID
caretPos = ta.selectionStart caretPos = ta.selectionStart
# Replace selection for text. # Replace selection for text.
@ -506,7 +506,7 @@ QR =
$.asap (-> $.id 'recaptcha_challenge_field_holder'), @ready.bind @ $.asap (-> $.id 'recaptcha_challenge_field_holder'), @ready.bind @
ready: -> ready: ->
imgContainer = $.el 'div', imgContainer = $.el 'div',
className: 'captchaimg' className: 'captcha-img'
title: 'Reload' title: 'Reload'
innerHTML: '<img>' innerHTML: '<img>'
input = $.el 'input', input = $.el 'input',