mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-22 22:23:23 +00:00
Merge branch 'new_django' into 'master'
Fix subscription bug for old subscribers on subscription page See merge request ae/Sith!153
This commit is contained in:
commit
b2abc78694
@ -35,10 +35,21 @@ $( function() {
|
|||||||
function display_new_member() {
|
function display_new_member() {
|
||||||
if (select.val()) {
|
if (select.val()) {
|
||||||
member_block.hide();
|
member_block.hide();
|
||||||
|
member_block.children().each(function() {
|
||||||
|
$(this).children().each(function() {
|
||||||
|
$(this).removeAttr('required');
|
||||||
|
});
|
||||||
|
});
|
||||||
user_info.load("/user/"+select.val()+"/mini");
|
user_info.load("/user/"+select.val()+"/mini");
|
||||||
user_info.show();
|
user_info.show();
|
||||||
} else {
|
} else {
|
||||||
member_block.show();
|
member_block.show();
|
||||||
|
member_block.children().each(function() {
|
||||||
|
$(this).children().each(function() {
|
||||||
|
$(this).prop('required', true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
user_info.empty();
|
user_info.empty();
|
||||||
user_info.hide();
|
user_info.hide();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user