Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1419 | Rev 1422 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

$(document).ready(function() {  
        // Activation du carousel d'images
        $('#smartflore-illustrations-galerie-carousel').carousel();
        
        // Pour que les sources s'affichent dans une nouvelle fenĂȘtre
        $('#smartflore-footer-button-sources').click(function() {
                voirSources();
        });
        
        function voirSources() {
                var w = window.open();
                var html = $("#smartflore-sources").html();
        
            $(w.document.body).html(html);
        }
});