shuffle
This commit is contained in:
parent
649ed38d03
commit
37804ee75c
@ -1375,46 +1375,45 @@
|
|||||||
if (text == null) {
|
if (text == null) {
|
||||||
text = '';
|
text = '';
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
|
"
|
||||||
|
<a class=close title=close>X</a><input type=checkbox id=autohide title=autohide>
|
||||||
|
<div class=move><input placeholder=Name name=name form=qr_form class=inputtext>Quick Reply</div>
|
||||||
|
<form enctype=multipart/form-data method=post action=http://sys.4chan.org/#{g.BOARD}/post target=iframe id=qr_form>
|
||||||
|
<input type=hidden name=resto value=#{tid}>
|
||||||
|
<input type=hidden name=mode value=regist>
|
||||||
|
<input type=hidden name=recaptcha_challenge_field id=challenge>
|
||||||
|
<input type=hidden name=recaptcha_response_field id=response>
|
||||||
|
<div><input placeholder=Email name=email class=inputtext>#{QR.spoiler}</div>
|
||||||
|
<div><input placeholder=Subject name=sub class=inputtext><button>Submit</button><label>auto<input id=auto type=checkbox></label></div>
|
||||||
|
<div><textarea placeholder=Comment name=com class=inputtext></textarea></div>
|
||||||
|
<div><img></div>
|
||||||
|
<div><input placeholder=Verification autocomplete=off id=recaptcha_response_field class=inputtext><span id=cl></span></div>
|
||||||
|
<div>#{QR.file}</div>
|
||||||
|
</form>
|
||||||
|
<div id=files></div>
|
||||||
|
<div><input placeholder=Password name=pwd type=password class=inputtext><a id=attach>attach another file</a></div>
|
||||||
|
<a class=error></a>
|
||||||
|
"
|
||||||
|
#XXX use dom methods to set values instead of injecting raw user input into your html -_-;
|
||||||
|
c = d.cookie
|
||||||
|
$('[name=name]', qr).value = if m = c.match(/4chan_name=([^;]+)/) then decodeURIComponent m[1] else ''
|
||||||
|
$('[name=email]', qr).value = if m = c.match(/4chan_email=([^;]+)/) then decodeURIComponent m[1] else ''
|
||||||
|
$('[name=pwd]', qr).value = if m = c.match(/4chan_pass=([^;]+)/) then decodeURIComponent m[1] else $('input[name=pwd]').value
|
||||||
|
$('textarea', qr).value = text
|
||||||
|
QR.captchaLength()
|
||||||
|
QR.cooldown() if conf['Cooldown']
|
||||||
|
$.bind $('.close', qr), 'click', QR.close
|
||||||
|
$.bind $('form', qr), 'submit', QR.submit
|
||||||
|
$.bind $('#recaptcha_response_field', qr), 'keydown', QR.keydown
|
||||||
|
$.bind $('#recaptcha_response_field', qr), 'keydown', Recaptcha.listener
|
||||||
|
$.bind $('[type=file]', qr), 'change', QR.change
|
||||||
|
$.bind $('#attach', qr), 'click', QR.attach
|
||||||
|
*/
|
||||||
QR.qr = qr = ui.dialog('qr', {
|
QR.qr = qr = ui.dialog('qr', {
|
||||||
top: '0',
|
top: '0',
|
||||||
left: '0'
|
left: '0'
|
||||||
}, " <a class=close>X</a> <input type=checkbox id=autohide title=autohide> <div class=move> <button>File</button> <span class=input><input name=sub placeholder=Subject><span>Subject</span></span> <span class=input><input name=name placeholder=Name><span>Name</span></span> <span class=input><input name=email placeholder=Email><span>Email</span></span> </div> <div class=autohide> <textarea></textarea> <div><img></div> <div id=captcha> <span id=cl>120 Captchas</span> <input id=recaptcha_response_field> </div> <div> <button>Submit</button> <input type=checkbox id=autopost title=autopost> <span class=error>Derp</span> </div> </div> ", {
|
}, " <a class=close>X</a> <input type=checkbox id=autohide title=autohide> <div class=move> <button>File</button> <span class=input><input name=sub placeholder=Subject><span>Subject</span></span> <span class=input><input name=name placeholder=Name><span>Name</span></span> <span class=input><input name=email placeholder=Email><span>Email</span></span> </div> <div class=autohide> <textarea></textarea> <div><img></div> <div id=captcha> <span id=cl>120 Captchas</span> <input id=recaptcha_response_field> </div> <div> <button>Submit</button> <input type=checkbox id=autopost title=autopost> <span class=error>Derp</span> </div> </div> ");
|
||||||
/*
|
|
||||||
"
|
|
||||||
<a class=close title=close>X</a><input type=checkbox id=autohide title=autohide>
|
|
||||||
<div class=move><input placeholder=Name name=name form=qr_form class=inputtext>Quick Reply</div>
|
|
||||||
<form enctype=multipart/form-data method=post action=http://sys.4chan.org/#{g.BOARD}/post target=iframe id=qr_form>
|
|
||||||
<input type=hidden name=resto value=#{tid}>
|
|
||||||
<input type=hidden name=mode value=regist>
|
|
||||||
<input type=hidden name=recaptcha_challenge_field id=challenge>
|
|
||||||
<input type=hidden name=recaptcha_response_field id=response>
|
|
||||||
<div><input placeholder=Email name=email class=inputtext>#{QR.spoiler}</div>
|
|
||||||
<div><input placeholder=Subject name=sub class=inputtext><button>Submit</button><label>auto<input id=auto type=checkbox></label></div>
|
|
||||||
<div><textarea placeholder=Comment name=com class=inputtext></textarea></div>
|
|
||||||
<div><img></div>
|
|
||||||
<div><input placeholder=Verification autocomplete=off id=recaptcha_response_field class=inputtext><span id=cl></span></div>
|
|
||||||
<div>#{QR.file}</div>
|
|
||||||
</form>
|
|
||||||
<div id=files></div>
|
|
||||||
<div><input placeholder=Password name=pwd type=password class=inputtext><a id=attach>attach another file</a></div>
|
|
||||||
<a class=error></a>
|
|
||||||
"
|
|
||||||
#XXX use dom methods to set values instead of injecting raw user input into your html -_-;
|
|
||||||
c = d.cookie
|
|
||||||
$('[name=name]', qr).value = if m = c.match(/4chan_name=([^;]+)/) then decodeURIComponent m[1] else ''
|
|
||||||
$('[name=email]', qr).value = if m = c.match(/4chan_email=([^;]+)/) then decodeURIComponent m[1] else ''
|
|
||||||
$('[name=pwd]', qr).value = if m = c.match(/4chan_pass=([^;]+)/) then decodeURIComponent m[1] else $('input[name=pwd]').value
|
|
||||||
$('textarea', qr).value = text
|
|
||||||
QR.captchaLength()
|
|
||||||
QR.cooldown() if conf['Cooldown']
|
|
||||||
$.bind $('.close', qr), 'click', QR.close
|
|
||||||
$.bind $('form', qr), 'submit', QR.submit
|
|
||||||
$.bind $('#recaptcha_response_field', qr), 'keydown', QR.keydown
|
|
||||||
$.bind $('#recaptcha_response_field', qr), 'keydown', Recaptcha.listener
|
|
||||||
$.bind $('[type=file]', qr), 'change', QR.change
|
|
||||||
$.bind $('#attach', qr), 'click', QR.attach
|
|
||||||
*/
|
|
||||||
});
|
|
||||||
QR.captchaImg();
|
QR.captchaImg();
|
||||||
$.append(d.body, qr);
|
$.append(d.body, qr);
|
||||||
ta = $('textarea', qr);
|
ta = $('textarea', qr);
|
||||||
|
|||||||
@ -1067,45 +1067,6 @@ QR =
|
|||||||
disabled: false
|
disabled: false
|
||||||
QR.submit() if $('#auto', QR.qr).checked
|
QR.submit() if $('#auto', QR.qr).checked
|
||||||
dialog: (text='', tid) ->
|
dialog: (text='', tid) ->
|
||||||
QR.qr = qr = ui.dialog 'qr', top: '0', left: '0', "
|
|
||||||
<a class=close>X</a>
|
|
||||||
<input type=checkbox id=autohide title=autohide>
|
|
||||||
<div class=move>
|
|
||||||
<button>File</button>
|
|
||||||
<span class=input><input name=sub placeholder=Subject><span>Subject</span></span>
|
|
||||||
<span class=input><input name=name placeholder=Name><span>Name</span></span>
|
|
||||||
<span class=input><input name=email placeholder=Email><span>Email</span></span>
|
|
||||||
</div>
|
|
||||||
<div class=autohide>
|
|
||||||
<textarea></textarea>
|
|
||||||
<div><img></div>
|
|
||||||
<div id=captcha>
|
|
||||||
<span id=cl>120 Captchas</span>
|
|
||||||
<input id=recaptcha_response_field>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<button>Submit</button>
|
|
||||||
<input type=checkbox id=autopost title=autopost>
|
|
||||||
<span class=error>Derp</span>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
###
|
###
|
||||||
"
|
"
|
||||||
<a class=close title=close>X</a><input type=checkbox id=autohide title=autohide>
|
<a class=close title=close>X</a><input type=checkbox id=autohide title=autohide>
|
||||||
@ -1141,6 +1102,29 @@ QR =
|
|||||||
$.bind $('[type=file]', qr), 'change', QR.change
|
$.bind $('[type=file]', qr), 'change', QR.change
|
||||||
$.bind $('#attach', qr), 'click', QR.attach
|
$.bind $('#attach', qr), 'click', QR.attach
|
||||||
###
|
###
|
||||||
|
QR.qr = qr = ui.dialog 'qr', top: '0', left: '0', "
|
||||||
|
<a class=close>X</a>
|
||||||
|
<input type=checkbox id=autohide title=autohide>
|
||||||
|
<div class=move>
|
||||||
|
<button>File</button>
|
||||||
|
<span class=input><input name=sub placeholder=Subject><span>Subject</span></span>
|
||||||
|
<span class=input><input name=name placeholder=Name><span>Name</span></span>
|
||||||
|
<span class=input><input name=email placeholder=Email><span>Email</span></span>
|
||||||
|
</div>
|
||||||
|
<div class=autohide>
|
||||||
|
<textarea></textarea>
|
||||||
|
<div><img></div>
|
||||||
|
<div id=captcha>
|
||||||
|
<span id=cl>120 Captchas</span>
|
||||||
|
<input id=recaptcha_response_field>
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<button>Submit</button>
|
||||||
|
<input type=checkbox id=autopost title=autopost>
|
||||||
|
<span class=error>Derp</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
"
|
||||||
QR.captchaImg()
|
QR.captchaImg()
|
||||||
$.append d.body, qr
|
$.append d.body, qr
|
||||||
ta = $ 'textarea', qr
|
ta = $ 'textarea', qr
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user