Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3960 Rev 3961
Line 44... Line 44...
44
		$( '.autres-filtres, .bouton-plus-filtres .moins', $thisGalerie ).addClass( 'hidden' );
44
		$( '.autres-filtres, .bouton-plus-filtres .moins', $thisGalerie ).addClass( 'hidden' );
45
		$( '.bouton-plus-filtres .plus', $thisGalerie ).removeClass( 'hidden' );
45
		$( '.bouton-plus-filtres .plus', $thisGalerie ).removeClass( 'hidden' );
46
	});
46
	});
Line 47... Line 47...
47
 
47
 
-
 
48
	lthis.rechercher();
48
	lthis.rechercher();
49
	lthis.affichageEFlore();
Line 49... Line 50...
49
};
50
};
50
 
51
 
51
WidgetPhoto.prototype.rechercher = function(){
52
WidgetPhoto.prototype.rechercher = function(){
Line 154... Line 155...
154
	});
155
	});
Line 155... Line 156...
155
 
156
 
156
	// Rediriger vers la nouvelle URL
157
	// Rediriger vers la nouvelle URL
157
	window.location.replace(url);
158
	window.location.replace(url);
-
 
159
};
-
 
160
 
-
 
161
WidgetPhoto.prototype.affichageEFlore = function (){
-
 
162
	const lthis = this;
-
 
163
	let tagToDisplay = 'fleur';
-
 
164
 
-
 
165
	// Remove 'active' class from all list items
-
 
166
	$(".icone-organe-list").removeClass("active");
-
 
167
 
-
 
168
	// Add 'active' class to the clicked list item
-
 
169
	$("#eflore-fleur").parent(".icone-organe-list").addClass("active");
-
 
170
 
-
 
171
	lthis.displayImages(tagToDisplay);
-
 
172
 
-
 
173
	$(".lien-images-organes").click(function(event){
-
 
174
		event.preventDefault();
-
 
175
 
-
 
176
		// Remove 'active' class from all list items
-
 
177
		$(".icone-organe-list").removeClass("active");
-
 
178
 
-
 
179
		// Add 'active' class to the clicked list item
-
 
180
		$(this).parent(".icone-organe-list").addClass("active");
-
 
181
 
-
 
182
		// Get the parameters 'value' and 'filterName' from the clicked link
-
 
183
		tagToDisplay = $(this).attr("title");
-
 
184
 
-
 
185
		lthis.displayImages(tagToDisplay);
-
 
186
	})
-
 
187
}
-
 
188
 
-
 
189
WidgetPhoto.prototype.displayImages = function (tagToDisplay){
-
 
190
	$(".cel-photo").hide();
-
 
191
	$("."+tagToDisplay).show();
-
 
192
	$(".non_eflore").show();