Subversion Repositories eFlore/Applications.cel-consultation

Compare Revisions

Ignore whitespace Rev 2 → Rev 3

/trunk/squelettes/js/consultation.js
47,9 → 47,28
$("img").lazyload();
}
 
function initialiserPanneauRechercheAvancee() {
$("#afficher_cacher_aide").bind('click', function() {
if($("#ref-rech-opt").is(':visible')) {
$('#ref-rech-opt').slideUp('slow', function() {
$("#afficher_cacher_aide").html("Afficher l'aide")
});
} else {
$('#ref-rech-opt').slideDown('slow', function() {
$("#afficher_cacher_aide").html("Cacher l'aide");
});
}
});
$("#ref-rech-opt").hide();
}
 
$(document).ready(function() {
reparerLiensDD();
initialiserZoom();
initialiserElementsPliables();
initialiserPanneauRechercheAvancee();
initialiserLazyLoading();
});