|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
-
- $(document).ready(function()
- {
- boulange_signup() ;
- boulange_add_boulangerie() ;
-
- });
-
- function boulange_scroll(id) {
- if($("#"+id).size())
- $('html,body').animate({
- scrollTop: $("#"+id).offset().top},
- 1000);
- }
-
- function boulange_add_boulangerie()
- {
- $('#bloc-add-etablissement .panel-heading').click(function() {
- var panel_body = $(this).parent().find('.panel-body') ;
- if(panel_body.css('display') == 'none')
- panel_body.fadeIn() ;
- else
- panel_body.hide() ;
- }) ;
-
- $('#addetablissementform-id_etablissement,#signupform-id_etablissement').change(function() {
- if($(this).find('option:selected').hasClass('lock')) {
- $('#bloc-code-acces').fadeIn() ;
- }
- else {
- $('#bloc-code-acces').hide() ;
- }
- }) ;
-
- if($('#addetablissementform-id_etablissement option:selected,#signupform-id_etablissement option:selected').hasClass('lock')) {
- $('#bloc-code-acces').show() ;
- }
- else {
- $('#bloc-code-acces').hide() ;
- }
-
- if($('#bloc-add-etablissement').size()) {
- if($('#bloc-add-etablissement .has-error').size()) {
- $('#bloc-add-etablissement .panel-body').show() ;
- }
- }
-
- }
-
- function boulange_signup()
- {
- if($('#form-signup').size())
- {
- boulange_signup_champs_boulanger() ;
- $('#option-client, #option-boulanger').change(function() {
- boulange_signup_champs_boulanger() ;
- }) ;
- }
- }
-
- function boulange_signup_champs_boulanger()
- {
- if($('#option-boulanger').prop('checked'))
- {
- $('#champs-boulanger').fadeIn() ;
- $('#champs-client').hide() ;
- }
- else {
- $('#champs-boulanger').hide() ;
- $('#champs-client').fadeIn() ;
- }
- }
-
-
|