Subversion Repositories Sites.obs-saisons.fr

Rev

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

Rev 259 Rev 302
Line 627... Line 627...
627
 
627
 
628
************************************************************************************************
628
************************************************************************************************
629
************************************************************************************************
629
************************************************************************************************
Line -... Line 630...
-
 
630
**/ 
-
 
631
 
-
 
632
function initialiserLiensNouvelleFenetre() {
-
 
633
  
-
 
634
	$('a.lien_nouvelle_fenetre').each(function() {
-
 
635
	  var titre = $(this).attr("title");
-
 
636
	  $(this).attr("title", titre+" (s'ouvre dans une nouvelle fenêtre)");
-
 
637
	});
-
 
638
  
-
 
639
	$('a.lien_nouvelle_fenetre').click(function(event) {
-
 
640
		event.preventDefault();
-
 
641
		window.open($(this).attr('href'));
-
 
642
	});
630
**/ 
643
}
631
 
644
 
632
function initialiserLiensSuppression() {
645
function initialiserLiensSuppression() {
633
	$('.lien_suppression').click(function() {
646
	$('.lien_suppression').click(function() {
634
		return window.confirm('Êtes vous sur de vouloir supprimer ?');
647
		return window.confirm('Êtes vous sur de vouloir supprimer ?');
Line 635... Line 648...
635
	});
648
	});
636
}
649
}
-
 
650
 
637
 
651
$(document).ready(function() {
Line 638... Line 652...
638
$(document).ready(function() {
652
	initialiserLiensSuppression();