Add a patch to make submit buttons work even if they would normally fail because of the margin change.

master
Sven Slootweg 11 years ago
parent 9aa507d8f7
commit 4dcb7b714d

@ -53,4 +53,8 @@ $(function(){
affected.hide();
}
});
$('button[type=submit]').mousedown(function(){
$(this).closest('form').submit();
});
});

Loading…
Cancel
Save