Fix subscription bug for old subscribers on subscription page

This commit is contained in:
Antoine Bartuccio 2018-06-12 15:00:51 +02:00
parent 5c4a16d14c
commit f1e8d55b41
Signed by: klmp200
GPG Key ID: E7245548C53F904B
1 changed files with 11 additions and 0 deletions

View File

@ -35,10 +35,21 @@ $( function() {
function display_new_member() {
if (select.val()) {
member_block.hide();
member_block.children().each(function() {
$(this).children().each(function() {
$(this).removeAttr('required');
});
});
user_info.load("/user/"+select.val()+"/mini");
user_info.show();
} else {
member_block.show();
member_block.children().each(function() {
$(this).children().each(function() {
$(this).prop('required', true);
});
});
user_info.empty();
user_info.hide();
}