Fixing premium option in stripe form.

This commit is contained in:
Samuel Clay 2013-07-04 11:53:01 -07:00
parent ac35021f58
commit 9ac6c399cf

View file

@ -125,13 +125,13 @@ $(function() {
if ($payextra.is(':checked')) {
$label2.hide();
$label3.show();
$radio2.attr('checked', false);
$radio3.attr('checked', true);
// $radio2.attr('checked', false);
$radio3.prop('checked', true);
} else {
$label2.show();
$label3.hide();
$radio2.attr('checked', true);
$radio3.attr('checked', false);
// $radio3.attr('checked', false);
$radio2.prop('checked', true);
}
};
$("input[name=payextra]").on('change', change_payextra);