Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3988 Rev 3989
Line 40... Line 40...
40
	this.initEvtsDefilerImage();
40
	this.initEvtsDefilerImage();
41
	// this.initEvtsContact();
41
	// this.initEvtsContact();
42
	$( window ).on( 'resize', lthis.redimentionnerModaleCarousel.bind( lthis ) );
42
	$( window ).on( 'resize', lthis.redimentionnerModaleCarousel.bind( lthis ) );
43
	this.initEvtsFonctionsPhoto();
43
	this.initEvtsFonctionsPhoto();
44
	this.initEvtsRetourGalerieResponsive();
44
	this.initEvtsRetourGalerieResponsive();
-
 
45
	this.initEvtsToggleVolet();
45
};
46
};
Line 46... Line 47...
46
 
47
 
47
WidgetPhotoPopup.prototype.mettreAJourPopup = function() {
48
WidgetPhotoPopup.prototype.mettreAJourPopup = function() {
48
	this.mettreAJourInfosImage();
49
	this.mettreAJourInfosImage();
Line 157... Line 158...
157
 
158
 
158
		lthis.ouvrirVoletFct( voletAOuvrir, voletAFermer );
159
		lthis.ouvrirVoletFct( voletAOuvrir, voletAFermer );
159
		if ( window.matchMedia( '(max-width: 991px)' ).matches ) {
160
		if ( window.matchMedia( '(max-width: 991px)' ).matches ) {
160
			$( '#info-img-galerie' ).addClass( 'hidden' );
161
			$( '#info-img-galerie' ).addClass( 'hidden' );
-
 
162
			$( '#volet, #retour-galerie' ).removeClass( 'hidden' );
161
			$( '#volet, #retour-galerie' ).removeClass( 'hidden' );
163
			$( '#hide-metas-div' ).removeClass( 'hidden' );
162
		}
164
		}
163
	});
165
	});
Line 164... Line 166...
164
};
166
};
Line 169... Line 171...
169
		$( '#info-img-galerie' ).removeClass( 'hidden' );
171
		$( '#info-img-galerie' ).removeClass( 'hidden' );
170
		$( this ).addClass( 'hidden' );
172
		$( this ).addClass( 'hidden' );
171
		if ( window.matchMedia( '(max-width: 991px)' ).matches ) {
173
		if ( window.matchMedia( '(max-width: 991px)' ).matches ) {
172
			$( '#volet' ).addClass( 'hidden' );
174
			$( '#volet' ).addClass( 'hidden' );
173
			$( '.bouton-fct.actif' ).removeClass( 'actif' );
175
			$( '.bouton-fct.actif' ).removeClass( 'actif' );
-
 
176
			$( '#hide-metas-div' ).addClass( 'hidden' );
174
		}
177
		}
175
	});
178
	});
176
};
179
};
Line 177... Line 180...
177
 
180
 
Line 1029... Line 1032...
1029
	var newSrc = urlImage + '?timestamp=' + new Date().getTime();
1032
	var newSrc = urlImage + '?timestamp=' + new Date().getTime();
Line 1030... Line 1033...
1030
 
1033
 
1031
	// Met à jour l'attribut 'src' de l'image avec la nouvelle URL
1034
	// Met à jour l'attribut 'src' de l'image avec la nouvelle URL
1032
	$image.attr('src', newSrc);
1035
	$image.attr('src', newSrc);
-
 
1036
}
-
 
1037
 
-
 
1038
WidgetPhotoPopup.prototype.initEvtsToggleVolet = function (){
-
 
1039
	lthis = this;
-
 
1040
 
-
 
1041
	$('#hide-metas-div').off('click').on('click', function () {
-
 
1042
		$('#hide-metas-div').toggleClass('volet-hidden')
-
 
1043
		$('#hide-metas i').toggleClass('fa-angle-double-left')
-
 
1044
		$('#hide-metas i').toggleClass('fa-angle-double-right')
-
 
1045
		if ($('#hide-metas-div').hasClass('volet-hidden')){
-
 
1046
			$('#hide-metas').attr('title', "Afficher le volet d'information")
-
 
1047
		} else {
-
 
1048
			$('#hide-metas').attr('title', "Cacher le volet d'information")
-
 
1049
		}
-
 
1050
 
-
 
1051
		$( '#volet, #retour-galerie' ).toggleClass( 'hidden' );
-
 
1052
		$( '#boutons-footer, #info-img-galerie' ).toggleClass( 'col-lg-8' );
-
 
1053
	})