Subversion Repositories eFlore/Applications.eflore-consultation

Compare Revisions

No changes between revisions

Ignore whitespace Rev 1389 → Rev 1390

/trunk/presentations/images/bib_en_ligne.png
Cannot display: file marked as a binary type.
svn:mime-type = image/png
/trunk/presentations/images/bib_en_ligne.png
New file
Property changes:
Added: svn:mime-type
+image/png
\ No newline at end of property
/trunk/presentations/scripts/fiche-synthese.js
372,10 → 372,15
// La partie biblio commence au premier crochet ouvrant
// ou bien au span de la biblio à exclure
posCrochetGauche = html.indexOf('[');
if(posCrochetGauche < 0) {
posCrochetGauche = html.indexOf('<span class="bib_excl">');
posbiblioAExclure = html.indexOf('<span class="bib_excl">');
if(posCrochetGauche < 0 || (posbiblioAExclure > 0 && posbiblioAExclure < posCrochetGauche)) {
posCrochetGauche = posbiblioAExclure;
}
console.log(posCrochetGauche+" "+posbiblioAExclure);
if (posCrochetGauche > 0) {
nom = html.substr(0, posCrochetGauche);
biblio = html.substr(posCrochetGauche, html.length);
/trunk/presentations/styles/eflore.css
994,6 → 994,15
margin-left: 100px;
}
 
.lien_biblio_ext {
position: absolute;
right: 195px;
}
 
.lien_biblio_ext {
border-bottom: none;
}
 
/*----------------------------------------------------------------------------------------------------------*/
/* Wikinis */
.editable_sur_clic {