Browse Source

[frontend] Inscription : affichage du champs "Code" lorsque le producteur est protégé par un code

dev
Guillaume Bourgeois 5 years ago
parent
commit
8291bddc34
2 changed files with 15 additions and 1 deletions
  1. +14
    -0
      frontend/web/js/frontend.js
  2. +1
    -1
      producer/web/js/producer.js

+ 14
- 0
frontend/web/js/frontend.js View File

$('#option-user, #option-producer').change(function() { $('#option-user, #option-producer').change(function() {
opendistrib_signup_fields_producer() ; opendistrib_signup_fields_producer() ;
}) ; }) ;
opendistrib_signup_code_producer() ;
$('#signupform-id_producer').change(function() {
opendistrib_signup_code_producer() ;
}) ;
} }
} }


} }
} }


function opendistrib_signup_code_producer() {
if($('#signupform-id_producer option:selected').hasClass('lock')){
$('#bloc-code-acces').fadeIn() ;
}
else {
$('#bloc-code-acces').hide() ;
}
}




+ 1
- 1
producer/web/js/producer.js View File

base_url += $('meta[name=slug-producer]').attr('content')+'/' ; base_url += $('meta[name=slug-producer]').attr('content')+'/' ;
} }
return base_url ; return base_url ;
}
}

Loading…
Cancel
Save