Subversion Repositories eFlore/Applications.cel

Rev

Rev 3606 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3606 Rev 3607
Line 658... Line 658...
658
 
658
 
659
	var thisSrcParts = [],
659
	var thisSrcParts = [],
660
		thisNomImage = '',
660
		thisNomImage = '',
Line -... Line 661...
-
 
661
		nonDupliquee = true;
-
 
662
 
661
		nonDupliquee = true;
663
	nomImage = nomImage.toLowerCase();
662
 
664
 
663
	$( 'img.miniature-img,img.miniature' ).each( function() {
665
	$( 'img.miniature-img,img.miniature' ).each( function() {
664
		// vérification avec alt de l'image
666
		// vérification avec alt de l'image
665
		if ( lthis.valOk ( $( this ).attr ( 'alt' ), true, nomImage ) ) {
667
		if ( lthis.valOk ( $( this ).attr( 'alt' ) ) && $( this ).attr('alt' ).toLowerCase() === nomImage ) {
666
			nonDupliquee = false;
668
			nonDupliquee = false;
667
			return false;// Pas besoin de poursuivre la boucle
669
			return false;// Pas besoin de poursuivre la boucle
668
		} else { // sinon vérifie aussi avec l'adresse (src) de l'image
670
		} else { // sinon vérifie aussi avec l'adresse (src) de l'image
669
			thisSrcParts = $( this ).attr( 'src' ).split( '/' );
671
			thisSrcParts = $( this ).attr( 'src' ).split( '/' );
670
			thisNomImage = thisSrcParts[ thisSrcParts.length - 1 ].replace( '_min', '' );
672
			thisNomImage = thisSrcParts[ thisSrcParts.length - 1 ].replace( '_min', '' ).toLowerCase();
671
			if ( lthis.valOk ( thisNomImage, true, nomImage ) ) {
673
			if ( lthis.valOk( thisNomImage, true, nomImage ) ) {
672
				nonDupliquee = false;
674
				nonDupliquee = false;
673
				return false;
675
				return false;
674
			}
676
			}