shuffle
This commit is contained in:
parent
649ed38d03
commit
37804ee75c
@ -1375,10 +1375,6 @@
|
|||||||
if (text == null) {
|
if (text == null) {
|
||||||
text = '';
|
text = '';
|
||||||
}
|
}
|
||||||
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>
|
||||||
@ -1414,7 +1410,10 @@
|
|||||||
$.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);
|
||||||
|
|||||||
@ -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