Subversion Repositories eFlore/Applications.eflore-consultation

Rev

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

Rev 547 Rev 551
Line 2... Line 2...
2
 * Contient les fonction JS communes à l'ensemble des parties d'eflore (popup.php, index.php).
2
 * Contient les fonction JS communes à l'ensemble des parties d'eflore (popup.php, index.php).
3
 * 
3
 * 
4
 */
4
 */
Line 5... Line 5...
5
 
5
 
6
$(document).ready(function() {
6
$(document).ready(function() {
7
	$('a.lien-externe, a.lien_externe').on('click', ouvrirFenetreExterne);
7
	$('body').on('click', 'a.lien-externe, a.lien_externe', ouvrirFenetreExterne);
8
	$('.mailto').on('click', ouvrirPopUpContact);
8
	$('body').on('click', '.mailto', ouvrirPopUpContact);
Line 9... Line 9...
9
});
9
});
10
 
10
 
11
function ouvrirFenetreExterne(event) {
11
function ouvrirFenetreExterne(event) {