templates/charte/woody/js/navbar.js line 1

Open in your IDE?
  1. <script>
  2.     $(function(){  
  3.         console.log("popopopo");
  4.         // init href logo
  5.         $("#logo").attr("href", '{{ path("front_index") }}');
  6.         
  7.         // init logo
  8.         $.ajax({
  9.             type: 'POST',
  10.             url: '{{ path("recup_logo_navbar") }}'
  11.         })
  12.         .done(function(msg){
  13.             console.log("aa");
  14.             console.log(msg.identite);
  15.             console.log(msg.identite.logo);
  16.             $("#logo").html('<img src="/docs/logo/'+msg.identite.logo+'" alt="logo '+msg.identite.nom+'" width="227" />');
  17.         });
  18.     });
  19. </script>