Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

56 lines
1.3KB

  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. $(document).ready(function()
  7. {
  8. boulange_signup() ;
  9. boulange_index_commandes() ;
  10. });
  11. function boulange_scroll(id) {
  12. if($("#"+id).size())
  13. $('html,body').animate({
  14. scrollTop: $("#"+id).offset().top},
  15. 1000);
  16. }
  17. function boulange_index_commandes()
  18. {
  19. $('#bloc-add-etablissement .panel-heading').click(function() {
  20. var panel_body = $(this).parent().find('.panel-body') ;
  21. if(panel_body.css('display') == 'none')
  22. panel_body.fadeIn() ;
  23. else
  24. panel_body.hide() ;
  25. }) ;
  26. }
  27. function boulange_signup()
  28. {
  29. if($('#form-signup').size())
  30. {
  31. boulange_signup_champs_boulanger() ;
  32. $('#option-client, #option-boulanger').change(function() {
  33. boulange_signup_champs_boulanger() ;
  34. }) ;
  35. }
  36. }
  37. function boulange_signup_champs_boulanger()
  38. {
  39. if($('#option-boulanger').prop('checked'))
  40. {
  41. $('#champs-boulanger').fadeIn() ;
  42. $('#champs-client').hide() ;
  43. }
  44. else {
  45. $('#champs-boulanger').hide() ;
  46. $('#champs-client').fadeIn() ;
  47. }
  48. }