Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1423 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1423 Rev 1431
Line 18... Line 18...
18
			if(largeurFenetre >= 1000) {
18
			if(largeurFenetre >= 1000) {
19
				adapterTailleImages('XL');
19
				adapterTailleImages('XL');
20
			}
20
			}
21
		}
21
		}
22
	}
22
	}
23
	
23
 
24
	function voirSources() {
24
	function voirSources() {
25
		var w = window.open();
25
		var w = window.open();
26
		var html = $("#smartflore-sources").html();
26
		var html = $("#smartflore-sources").html();
27
	    $(w.document.body).html(html);
27
	    $(w.document.body).html(html);
28
	}
28
	}
Line 31... Line 31...
31
		$('#smartflore-illustrations-galerie-carousel img').each(function(index) {
31
		$('#smartflore-illustrations-galerie-carousel img').each(function(index) {
32
			var src = $(this).attr('src');
32
			var src = $(this).attr('src');
33
			$(this).attr('src', src.replace('S', taille));
33
			$(this).attr('src', src.replace('S', taille));
34
		});
34
		});
35
	}
35
	}
-
 
36
 
-
 
37
	$('#collapse-partenaires').on('shown.bs.collapse', function () {
-
 
38
		  $("html, body").animate({ scrollTop: $(document).height() }, "fast");
-
 
39
	});
-
 
40
 
36
});
41
});
37
42