Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

Ignore whitespace Rev 925 → Rev 926

/trunk/presentations/scripts/recherche.js
279,12 → 279,12
/**------------ Fonctions de détection de l'état du formulaire ------------------*/
function nomSciEstDemande() {
var boutonRadioNomSci = $('#type_nom_scientifique');
return (boutonRadioNomSci.attr("checked") != "undefined" && boutonRadioNomSci.attr("checked") == "checked");
return (($('#type_nom_vernaculaire').length <= 0) || (boutonRadioNomSci != null && boutonRadioNomSci.attr("checked") != "undefined" && boutonRadioNomSci.attr("checked") == "checked"));
}
 
function nomVernaculaireEstDemande() {
var boutonRadioNomSci = $('#type_nom_vernaculaire');
return (boutonRadioNomSci.attr("checked") != "undefined" && boutonRadioNomSci.attr("checked") == "checked");
return (boutonRadioNomSci.length > 0 && boutonRadioNomSci.attr("checked") != "undefined" && boutonRadioNomSci.attr("checked") == "checked");
}
 
/**------------ Fonctions de gestion de l'affichage des valeurs par defaut ----------------------*/
/trunk/presentations/squelettes/menu.tpl.html
4,6 → 4,7
<ul>
<li><a href="index.php?referentiel=bdtfx&amp;module=liste&amp;rang=F">Liste Famille</a></li>
<li><a href="index.php?referentiel=bdtfx&amp;module=liste&amp;rang=G">Liste Genre</a></li>
<li><a href="index.php?referentiel=bdtxa">eFlore Antilles</a></li>
</ul>
</li>
</ul>