Reports from the all board fix.
Bit hacky but it fixes the 405 that comes from trying to use quick post controls from /popular/.
This commit is contained in:
parent
cc62a579bc
commit
0bb214a3d1
@ -39,10 +39,20 @@ $(document).ready(function(){
|
|||||||
' <input type="submit" name="report" value="'+_('Report')+'">' +
|
' <input type="submit" name="report" value="'+_('Report')+'">' +
|
||||||
'</div>' +
|
'</div>' +
|
||||||
'</form>');
|
'</form>');
|
||||||
|
if($('form[name="post"]:first').size()){
|
||||||
post_form
|
post_form
|
||||||
.attr('action', $('form[name="post"]:first').attr('action'))
|
.attr('action', $('form[name="post"]:first').attr('action'))
|
||||||
.append($('input[name=board]:first').clone())
|
.append($('input[name=board]:first').clone());
|
||||||
.find('input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"])').keypress(function(e) {
|
}else{
|
||||||
|
var board=$(this).parent().parent().parent().attr("data-board");
|
||||||
|
if(board){
|
||||||
|
post_form.attr('action', '/post.php'); //doesn't respect $config["root"] but...
|
||||||
|
post_form.append('<input type="hidden" value="'+board+'" name="board" />');
|
||||||
|
}else{
|
||||||
|
return;//better not to show a form if it isn't going to work
|
||||||
|
}
|
||||||
|
}
|
||||||
|
post_form.find('input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"])').keypress(function(e) {
|
||||||
if(e.which == 13) {
|
if(e.which == 13) {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
if($(this).attr('name') == 'password') {
|
if($(this).attr('name') == 'password') {
|
||||||
|
Loading…
Reference in New Issue
Block a user