Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev Author Line No. Line
1410 aurelien 1
$(document).ready(function() {
1419 aurelien 2
	// Activation du carousel d'images
3
	$('#smartflore-illustrations-galerie-carousel').carousel();
990 isa 4
 
1419 aurelien 5
	// Pour que les sources s'affichent dans une nouvelle fenêtre
1410 aurelien 6
	$('#smartflore-footer-button-sources').click(function() {
7
		voirSources();
8
	});
990 isa 9
 
1410 aurelien 10
	function voirSources() {
11
		var w = window.open();
12
		var html = $("#smartflore-sources").html();
13
 
14
	    $(w.document.body).html(html);
990 isa 15
	}
1419 aurelien 16
});