mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fixing premium option in stripe form.
This commit is contained in:
parent
ac35021f58
commit
9ac6c399cf
1 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue